diff options
-rw-r--r-- | gluegen.pom.in | 7 | ||||
-rw-r--r-- | jogl.pom.in | 7 | ||||
-rwxr-xr-x | make-deploy-one.sh | 7 |
3 files changed, 19 insertions, 2 deletions
diff --git a/gluegen.pom.in b/gluegen.pom.in index b018e40..96c5a7d 100644 --- a/gluegen.pom.in +++ b/gluegen.pom.in @@ -52,5 +52,12 @@ </executions> </plugin> </plugins> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh-external</artifactId> + <version>2.2</version> + </extension> + </extensions> </build> diff --git a/jogl.pom.in b/jogl.pom.in index abe63a6..bdb129d 100644 --- a/jogl.pom.in +++ b/jogl.pom.in @@ -64,5 +64,12 @@ </executions> </plugin> </plugins> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh-external</artifactId> + <version>2.2</version> + </extension> + </extensions> </build> diff --git a/make-deploy-one.sh b/make-deploy-one.sh index cd1a429..3e366e3 100755 --- a/make-deploy-one.sh +++ b/make-deploy-one.sh @@ -16,8 +16,11 @@ shift VERSION="$1" shift -REPOSITORY_URL="https://oss.sonatype.org/service/local/staging/deploy/maven2/" -REPOSITORY_ID="sonatype-nexus-staging" +# REPOSITORY_URL="https://oss.sonatype.org/service/local/staging/deploy/maven2/" +# REPOSITORY_ID="sonatype-nexus-staging" + +REPOSITORY_URL="scpexe://jogamp.org/home/mraynsford/repository/" +REPOSITORY_ID="jogamp-test-mirror" PLATFORMS=`cat make-platforms.txt | awk '{print $1}'` || exit 1 CURRENT_DIR=`pwd` || exit 1 |