diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-26 11:03:32 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-26 11:06:28 +0100 |
commit | 4a2c008adb1ee5721f5a328d6d250d441e8348fc (patch) | |
tree | 9f49a6b21def439a43b080bbcdfa25fcb3431eb8 | |
parent | 80c60b49511fb2826ac70afabe5699fe6abb7a96 (diff) | |
download | cpptasks-parallel-4a2c008adb1ee5721f5a328d6d250d441e8348fc.tar.gz cpptasks-parallel-4a2c008adb1ee5721f5a328d6d250d441e8348fc.tar.bz2 cpptasks-parallel-4a2c008adb1ee5721f5a328d6d250d441e8348fc.tar.xz cpptasks-parallel-4a2c008adb1ee5721f5a328d6d250d441e8348fc.zip |
o Forking the code to my own group id to be able to release it.
-rw-r--r-- | pom.xml | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -1,9 +1,15 @@ <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> + <parent> + <groupId>org.sonatype.oss</groupId> + <artifactId>oss-parent</artifactId> + <version>7</version> + </parent> + + <groupId>io.trygvis.usb</groupId> <artifactId>cpptasks-parallel</artifactId> - <version>1.0-beta-5-parallel-1-SNAPSHOT</version> + <version>1.0-beta-5-parallel-1-trygvis-1-SNAPSHOT</version> <name>CPPTasks (parallel)</name> <description> @@ -20,17 +26,24 @@ </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> <url>http://github.com/duns/cpptasks-parallel</url> </scm> - +--> + <scm> + <connection>scm:git:ssh://trygvis.io/~trygvis/git/2013/01/cpptasks-parallel.git</connection> + <developerConnection>scm:git:ssh://trygvis.io/~trygvis/git/2013/01/cpptasks-parallel.git</developerConnection> + </scm> + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <!-- to avoid MDEPLOY-50 and to deploy to duns' github repository --> +<!-- <distributionManagement> <repository> <id>duns-maven-releases</id> @@ -44,6 +57,7 @@ <url>file:///Users/duns/sonatype/git/maven-snapshots</url> </snapshotRepository> </distributionManagement> +--> <build> <defaultGoal>install</defaultGoal> |