<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/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>net.java.dev.jintention</groupId>
   <artifactId>jin-collections</artifactId>
   <packaging>jar</packaging>
   <version>0.6.2</version>
   <name>jin-collections</name>
   <url>http://jin-collection.dev.java.net</url>
   <description>jin collections is a tool libraries that help working with standard Java Collections utility in a "Code by
      Intenction" way. It is directly inspired from Smalltalk collections utility.</description>
   
   <parent>
      <groupId>net.java.dev</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
   </parent>
   
   <repositories>
      <repository>
         <id>maven2-repository.dev.java.net</id>
         <name>Java.net Repository for Maven</name>
         <url>http://download.java.net/maven/2/</url>
         <layout>default</layout>
      </repository>
   </repositories>
   
   <distributionManagement>
      <site>
         <id>jin-collections-www</id>
         <url>svn:https://svn.dev.java.net/svn/jin-collection/trunk/www/</url>
      </site>
      <repository>
         <uniqueVersion>false</uniqueVersion>
         <id>local-repository</id>
         <url>svn:https://svn.dev.java.net/svn/maven2-repository/trunk/www/repository/</url>
      </repository>
   </distributionManagement>
   
   <scm>
      <connection>
         scm:svn:https://svn.dev.java.net/svn/jin-collection/trunk/</connection>
      <developerConnection>
         scm:svn:https://svn.dev.java.net/svn/jin-collection/trunk/</developerConnection>
      <url>
         https://maven-javanet-skin.dev.java.net/source/browse/jin-collection/trunk/</url>
   </scm>
   
   <dependencies>
      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>4.3</version>
         <scope>test</scope>
      </dependency>
   </dependencies>
   
   <build>
      <plugins>
         <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.3</version>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <configuration>
               <downloadSources>true</downloadSources>
            </configuration>
         </plugin>
         <plugin>
            <inherited>true</inherited>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <executions>
               <execution>
                  <id>attach-sources</id>
                  <goals>
                     <goal>jar</goal>
                  </goals>
               </execution>
            </executions>
         </plugin>
      </plugins>
   </build>
   
   <developers>
      <developer>
         <name>Lorenzo Bolzani</name>
      </developer>
   </developers>
   <contributors>
      <contributor>
         <name>Daniele Dellafiore</name>
      </contributor>
   </contributors>
</project>