jin-collections
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.java.dev.jintention</groupId>
<artifactId>jin-collections</artifactId>
<version>0.9.1</version>
</dependency><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.9.1</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 inspired from Smalltalk Collections Utility.</description>
<repositories>
<repository>
<id>java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>java.net</id>
<url>java-net:/maven2-repository/trunk/repository/</url>
</repository>
<snapshotRepository>
<id>snapshots.ildella.net</id>
<url>http://danieledellafiore.net/nexus/content/repositories/snapshot.ildella.net/</url>
</snapshotRepository>
<site>
<id>dev.ildella.net</id>
<url>scp://ildella.net/srv/www/vhosts/ildella.net/subdomains/dev/httpdocs/projects/jin-collections/</url>
</site>
</distributionManagement>
<scm>
<connection>
scm:svn:https://svn.dev.java.net/svn/jin-collection/tags/jin-collections-0.9.1</connection>
<developerConnection>
scm:svn:https://svn.dev.java.net/svn/jin-collection/tags/jin-collections-0.9.1</developerConnection>
<url>
https://maven-javanet-skin.dev.java.net/source/browse/jin-collection/tags/jin-collections-0.9.1</url>
</scm>
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.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>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>1.9</version>
</extension>
</extensions>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<developers>
<developer>
<name>Lorenzo Bolzani</name>
<roles>
<role>founder</role>
<role>lead developer</role>
</roles>
</developer>
<developer>
<name>Daniele Dellafiore</name>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
</project>