1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<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>
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-sandbox</artifactId>
<version>1-SNAPSHOT</version>
</parent>
<artifactId>commons-openpgp</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Commons OpenPGP</name>
<url>http://jakarta.apache.org/commons/sandbox/openpgp/</url>
<inceptionYear>2005</inceptionYear>
<dependencies>
<!-- we need an optional dep on JCE for JDK 1.3 and lower -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk12</artifactId>
<version>130</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.6.5</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<developers>
<developer>
<id>brett</id>
<name>Brett Porter</name>
<email>brett AT apache DOT org</email>
<organization>Apache</organization>
<timezone>+10</timezone>
</developer>
<developer>
<id>bodewig</id>
<name>Stefan Bodewig</name>
<email>bodewig AT apache DOT org</email>
<organization>Apache</organization>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk/</developerConnection>
<url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk/</url>
</scm>
<distributionManagement>
<site>
<id>website</id>
<name>Apache Website</name>
<url>scp://people.apache.org/www/jakarta.apache.org/commons/sandbox/openpgp/</url>
</site>
</distributionManagement>
<!-- Compiler source and target JVM (see parent pom) -->
<properties>
<maven.compile.source>1.3</maven.compile.source>
<maven.compile.target>1.3</maven.compile.target>
</properties>
</project>
|