diff options
-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> |