summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-01 16:33:09 +0200
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-01 16:33:09 +0200
commit380c2ae1e4d746cdb6b01bd1b9ed8572225c8fab (patch)
treef320b1087d8710538abc7eb66a23921e15c1de5b
parent87790a8f17e7aa285f5fecada5fda678e9fd0af6 (diff)
downloadcpptasks-parallel-380c2ae1e4d746cdb6b01bd1b9ed8572225c8fab.tar.gz
cpptasks-parallel-380c2ae1e4d746cdb6b01bd1b9ed8572225c8fab.tar.bz2
cpptasks-parallel-380c2ae1e4d746cdb6b01bd1b9ed8572225c8fab.tar.xz
cpptasks-parallel-380c2ae1e4d746cdb6b01bd1b9ed8572225c8fab.zip
Fixed pom file
-rw-r--r--.cvsignore4
-rw-r--r--.gitignore4
-rw-r--r--pom.xml269
3 files changed, 127 insertions, 150 deletions
diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index 81da3c1..0000000
--- a/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-build
-dist
-result.xml
-bin
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..beef00d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+.classpath
+.project
+.settings
+target
diff --git a/pom.xml b/pom.xml
index da6cc12..55b6376 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,147 +1,124 @@
-<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>
- <groupId>net.sf.antcontrib</groupId>
- <artifactId>cpptasks</artifactId>
- <name>CPPTasks (modified)</name>
- <version>1.0-beta-4-parallel-3-SNAPSHOT</version>
- <description>
- Library to call native compilers and linkers.
- </description>
- <url>http://java.freehep.org/</url>
- <ciManagement>
- <system>continuum</system>
- <url>http://svn.freehep.org:2000/continuum</url>
- <notifiers>
- <notifier>
- <configuration>
- <address>
- Mark.Donszelmann@slac.stanford.edu
- </address>
- </configuration>
- </notifier>
- </notifiers>
- </ciManagement>
- <scm>
- <connection>scm:svn:svn://svn.freehep.org/svn/misc/trunk/cpptasks</connection>
- <developerConnection>scm:svn:svn://svn.freehep.org/svn/misc/trunk/cpptasks</developerConnection>
- </scm>
- <distributionManagement>
- <repository>
- <id>freehep-maven-deploy</id>
- <name>FreeHEP Maven Repository</name>
- <url>scpexe://svn.freehep.org/nfs/slac/g/jas/maven2</url>
- </repository>
- </distributionManagement>
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ssh-external</artifactId>
- <!-- needed for release to work -->
- <version>1.0-alpha-5</version>
- </extension>
- </extensions>
- <defaultGoal>install</defaultGoal>
- <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-release-plugin</artifactId>
- <configuration>
- <tagBase>svn://svn.freehep.org/svn/misc/tags</tagBase>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </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>
- </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>
- <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>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<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>
+
+ <groupId>net.sf.antcontrib</groupId>
+ <artifactId>cpptasks-parallel</artifactId>
+ <version>1.0-beta-4-parallel-3-SNAPSHOT</version>
+
+ <name>CPPTasks (parallel)</name>
+ <description>
+ Library to call native compilers and linkers.
+ </description>
+ <url>http://github.com/duns/cpptasks-parallel</url>
+
+ <scm>
+ <connection>scm:git:git://github.com/duns/cpptasks-parallel.git</connection>
+ <developerConnection>scm:git:git://github.com/duns/cpptasks-parallel.git</developerConnection>
+ <url>http://github.com/duns/cpptasks-parallel</url>
+ </scm>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <build>
+ <defaultGoal>install</defaultGoal>
+ <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-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </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>
+ </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>
+ <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>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>