plum
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.talk2object</groupId>
<artifactId>plum</artifactId>
<version>0.1.22</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/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.talk2object</groupId> <artifactId>plum</artifactId> <version>0.1.22</version> <packaging>pom</packaging> <name>Plum Interaction Framework</name> <description>Plum aims to provide a more simple and highly abstract way of interaction.</description> <url>http://plum.talk2object.com</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> <scm> <url>https://github.com/jackhatedance/plum</url> <connection>scm:git:git://github.com/jackhatedance/plum.git</connection> <developerConnection>scm:git:git@github.com:jackhatedance/plum.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <id>jackhatedance</id> <name>Jack Ding</name> <email>jackhatedance@gmail.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <build.number>SNAPSHOT</build.number> <jdk.version>1.6</jdk.version> <spring.version>4.2.0.RELEASE</spring.version> <spring.security.version>4.0.2.RELEASE</spring.security.version> <jstl.version>1.2</jstl.version> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <!-- add this parameter for jdk1.8 <additionalparam>-Xdoclint:none</additionalparam> --> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</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-release-plugin</artifactId> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>nexus</id> <name>Internal Releases</name> <url>http://ci:8081/nexus/content/repositories/snapshots</url> </snapshotRepository> <!-- <repository> <id>nexus</id> <name>Internal Releases</name> <url>http://ci:8081/nexus/content/repositories/releases</url> </repository> --> <repository> <id>sonatype-nexus</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <modules> <module>runtime</module> <module>lib</module> <module>integration</module> <module>package</module> <module>examples</module> </modules> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>