diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | DEPLOY | 4 | ||||
-rw-r--r-- | PATCHES | 5 | ||||
-rw-r--r-- | pom.xml | 14 |
4 files changed, 26 insertions, 0 deletions
@@ -2,3 +2,6 @@ .project .settings target +pom.xml.releaseBackup +release.properties + @@ -0,0 +1,4 @@ +To deploy use something like this: + +mvn -Darguments=-DaltDeploymentRepository=releases::default::http://localhost:8081/nexus/content/repositories/releases/ release:perform + @@ -1,5 +1,10 @@ *** ALL Changes marked with FREEHEP or BEGINFREEHEP-ENDFREEHEP. +* cpptasks-1.0-beta-4-parallel-4 + +- Added fake <distributionManagement> section to pom to avoid MDEPLOY-50. One can now deploy + this artifact using altDeploymentRepository + * cpptasks-1.0-beta-4-parallel-3 - [src/net/sf/antcontrib/cpptasks/intel/IntelLinuxFortranCompiler.java] added ifort. @@ -21,6 +21,20 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> +<!-- to avoid MDEPLOY-50 --> +<distributionManagement> + <repository> + <id>repo</id> + <name>Repository Name</name> + <url>scp://host/path/to/repo</url> + </repository> + <snapshotRepository> + <id>repo</id> + <name>Repository Name</name> + <url>scp://host/path/to/repo</url> + </snapshotRepository> +</distributionManagement> + <build> <defaultGoal>install</defaultGoal> <sourceDirectory>src</sourceDirectory> |