summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2009-11-06 15:30:37 +0100
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2009-11-06 15:30:37 +0100
commitfa6eb468613603bfa2571f2e456468878bfe0b95 (patch)
treeaab6fbeae127acd5b49b88cb0be70bce1d433fa9 /pom.xml
parent7ea719da26b29976e7227b4846953d24ced709d8 (diff)
parent683d490074d93baa8a47db7ec43b7bd31145a12a (diff)
downloadcpptasks-parallel-fa6eb468613603bfa2571f2e456468878bfe0b95.tar.gz
cpptasks-parallel-fa6eb468613603bfa2571f2e456468878bfe0b95.tar.bz2
cpptasks-parallel-fa6eb468613603bfa2571f2e456468878bfe0b95.tar.xz
cpptasks-parallel-fa6eb468613603bfa2571f2e456468878bfe0b95.zip
Merged with cpptasks-1.0b5
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml85
1 files changed, 36 insertions, 49 deletions
diff --git a/pom.xml b/pom.xml
index 472a1b3..42dee72 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,6 +11,15 @@
</description>
<url>http://github.com/duns/cpptasks-parallel</url>
+ <inceptionYear>2001</inceptionYear>
+ <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>
<connection>scm:git:git://github.com/duns/cpptasks-parallel.git</connection>
<developerConnection>scm:git:git://github.com/duns/cpptasks-parallel.git</developerConnection>
@@ -43,67 +52,40 @@
<configuration>
<source>1.4</source>
<target>1.4</target>
+ <optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
- <manifest>
- <mainClass>
- net.sf.antcontrib.cpptasks.AboutCCTask
- </mainClass>
- <packageName>
- net.sf.antcontrib.cpptasks
- </packageName>
- </manifest>
+ <manifestSections>
+ <manifestSection>
+ <name>net.sf.antcontrib.cpptasks</name>
+ <manifestEntries>
+ <Implementation-Title>cpptasks: Compiler Tasks for Apache Ant.</Implementation-Title>
+ <Implementation-Version>${project.version}</Implementation-Version>
+ <Implementation-Vendor>Ant-Contrib Project</Implementation-Vendor>
+ </manifestEntries>
+ </manifestSection>
+ </manifestSections>
</archive>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <reportFormat>plain</reportFormat>
+ <excludes>
+ <exclude>**/TestInstalledDevStudioLinker.java</exclude>
+ <exclude>**/TestMetaObjectCompiler.java</exclude>
+ <exclude>**/TestAbstract*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
- <profiles>
- <profile>
- <id>jdk1.4</id>
- <activation>
- <jdk>1.4</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.6.2</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jdk1.5</id>
- <activation>
- <jdk>1.5</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.7.1</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jdk1.6</id>
- <activation>
- <jdk>1.6</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.7.1</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
<dependencies>
<dependency>
<groupId>ant</groupId>
@@ -111,6 +93,11 @@
<version>1.6.5</version>
</dependency>
<dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>