expressive
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.atomicleopard</groupId>
<artifactId>expressive</artifactId>
<version>0.9.5</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>com.atomicleopard</groupId> <artifactId>expressive</artifactId> <name>expressive</name> <packaging>jar</packaging> <version>0.9.5</version> <description> Expressive is designed to allow coders to write more expressive code, focusing on what they want to do with collections of objects, rather than the mechanics of the manipulation of the Java Collections API. </description> <url>http://www.atomicleopard.com</url> <organization> <name>Atomic Leopard</name> <url>http://www.atomicleopard.com</url> </organization> <developers> <developer> <id>nick</id> <name>Nicholas Okunew</name> <email>nick@atomicleopard.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/atomicleopard/Expressive</connection> <developerConnection>scm:git:https://github.com/atomicleopard/Expressive</developerConnection> <url>https://github.com/atomicleopard/Expressive</url> </scm> <licenses> <license> <name>GNU Lesser General Public License (LGPL), Version 3.0</name> <url>http://www.gnu.org/licenses/lgpl-3.0.html</url> <distribution>repo</distribution> </license> </licenses> <!-- We use Sonatype to sync to the central repository, they require us to set their pom as our parent pom. --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <gpg.keyname>26463462</gpg.keyname> </properties> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.8.5</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </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> </plugins> </build> </project>