forked from pool/itext-parent
125 lines
3.5 KiB
Plaintext
125 lines
3.5 KiB
Plaintext
|
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.itextpdf</groupId>
|
||
|
<artifactId>itext-parent</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>iText Parent POM</name>
|
||
|
<description>The Parent POM for iText Projects</description>
|
||
|
<url>http://www.itextpdf.com/</url>
|
||
|
<mailingLists>
|
||
|
<mailingList>
|
||
|
<name>iText Questions</name>
|
||
|
<subscribe>
|
||
|
http://lists.sourceforge.net/lists/listinfo/itext-questions
|
||
|
</subscribe>
|
||
|
<post>itext-questions@lists.sourceforge.net</post>
|
||
|
<archive>
|
||
|
http://news.gmane.org/gmane.comp.java.lib.itext.general
|
||
|
</archive>
|
||
|
<otherArchives>
|
||
|
<otherArchive>http://itext-general.2136553.n4.nabble.com/</otherArchive>
|
||
|
<otherArchive>http://www.junlu.com/2.html</otherArchive>
|
||
|
<otherArchive>http://sourceforge.net/mailarchive/forum.php?forum_id=3273</otherArchive>
|
||
|
<otherArchive>http://www.mail-archive.com/itext-questions%40lists.sourceforge.net/</otherArchive>
|
||
|
</otherArchives>
|
||
|
</mailingList>
|
||
|
</mailingLists>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>redlab_b</id>
|
||
|
<name>Balder Van Camp</name>
|
||
|
<email>balder@redlab.be</email>
|
||
|
<url>http://www.redlab.be/</url>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>GNU Affero General Public License v3</name>
|
||
|
<url>http://www.fsf.org/licensing/licenses/agpl-3.0.html</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<scm>
|
||
|
<connection>scm:svn:http://itext.svn.sourceforge.net/svnroot/itext/itext-parent/trunk</connection>
|
||
|
<url>http://itext.svn.sourceforge.net/viewvc/itext</url>
|
||
|
</scm>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>2.3.2</version>
|
||
|
<configuration>
|
||
|
<source>1.5</source>
|
||
|
<target>1.5</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>default</id>
|
||
|
<activation>
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>all</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>2.7</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-sources</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</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-no-fork</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>sign</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<version>1.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>sign-artifacts</id>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
</project>
|