summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2005-11-18 21:02:34 +0000
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2005-11-18 21:02:34 +0000
commit1381c87965ab669820a4a7b48c09aca026f5b478 (patch)
tree947d5ba097efbc93fae515fdae35e626c1be7bef /pom.xml
downloadcpptasks-parallel-1381c87965ab669820a4a7b48c09aca026f5b478.tar.gz
cpptasks-parallel-1381c87965ab669820a4a7b48c09aca026f5b478.tar.bz2
cpptasks-parallel-1381c87965ab669820a4a7b48c09aca026f5b478.tar.xz
cpptasks-parallel-1381c87965ab669820a4a7b48c09aca026f5b478.zip
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml80
1 files changed, 80 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..db27b68
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,80 @@
+<project>
+ <parent>
+ <artifactId>freehep-maven-plugins</artifactId>
+ <groupId>org.freehep</groupId>
+ <version>1.9-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.freehep</groupId>
+ <artifactId>freehep-cpptasks</artifactId>
+ <name>FreeHEP CPPTasks (modified)</name>
+ <version>20051015-patched-0.6.1-SNAPSHOT</version>
+ <description>Library to call native compilers and linkers.</description>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <includes>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>src</directory>
+ <includes>
+ <include>cpptasks.tasks</include>
+ <include>cpptasks.types</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>net.sf.antcontrib.cpptasks.AboutCCTask</mainClass>
+ <packageName>net.sf.antcontrib.cpptasks</packageName>
+ </manifest>
+ </archive>
+ </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>
+ </profiles>
+ <dependencies>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ </dependencies>
+</project> \ No newline at end of file