<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  
  <groupId>asia.redact.bracket.properties</groupId>
  <artifactId>bracket-properties</artifactId>
  <version>1.3.2</version>
   <name>Bracket Properties</name>
   <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
	 <dependency>
  		<groupId>log4j</groupId>
 		<artifactId>log4j</artifactId>
  		<version>1.2.16</version>
	</dependency>
	</dependencies>
   <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <verbose>true</verbose>
          <fork>false</fork>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.4</version>
         
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
        
      </plugin>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9</version>
        <configuration>
          <show>private</show>
          <nohelp>true</nohelp>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
            <version>2.2.1</version>
        <configuration>
        	 <attach>true</attach>
        </configuration>
        <!--  
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>verify</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        -->
      </plugin>
    </plugins>
  </build>
	
	  <properties>
   		 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  	  </properties>
	
	  <url>http://code.google.com/p/bracket-properties/</url>
	   <licenses>
    	<license>
      		<name>The Apache Software License, Version 2.0</name>
      		<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     		<distribution>repo</distribution>
   	    </license>
       </licenses>
	  <description>Improved Java(tm) Properties classes</description>
	  <inceptionYear>2011</inceptionYear>
	  <organization>
	  	<name>David R. Smith</name>
	  	<url>http://code.google.com/p/bracket-properties/</url>
	  </organization>
	  <scm>
    	<connection>scm:svn:http://bracket-properties.googlecode.com/svn/trunk/</connection>
    	<developerConnection>scm:svn:https://bracket-properties.googlecode.com/svn/trunk/</developerConnection>
    	<url>http://bracket-properties.googlecode.com/svn/trunk/</url>
  	  </scm>
	  <developers>
	  	<developer>
      		<id>1</id>
      		<name>David R. Smith</name>
     		 <email>davesmith.gbs@gmail.com</email>
    	</developer>
	  </developers>
	  <issueManagement>
	  	<url>http://code.google.com/p/bracket-properties/issues/list</url>
	  	<system>Google Code</system>
	  </issueManagement>
	  <ciManagement>
	  	<system>None</system>
	  </ciManagement>
</project>