Updated pom.xml and Jenkinsfile for deploying to packages.libreccm.org
Former-commit-id: 10bc88c319
pull/2/head
parent
7181197b82
commit
25657a5e4b
|
|
@ -24,6 +24,13 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
stage("Deploy") {
|
||||
steps {
|
||||
dir('') {
|
||||
sh 'mvn deploy'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
success {
|
||||
|
|
|
|||
21
pom.xml
21
pom.xml
|
|
@ -25,6 +25,14 @@
|
|||
<name>LibreCCM</name>
|
||||
<url>http://www.libreccm.org/project-sites/</url>
|
||||
</site>
|
||||
<snapshotRepository>
|
||||
<id>libreccm-snapshots</id>
|
||||
<url>https://packages.libreccm.org/repository/maven-snapshots/</url>
|
||||
</snapshotRepository>
|
||||
<repository>
|
||||
<id>libreccm-releases</id>
|
||||
<url>https://packages.libreccm.org/repository/maven-releases/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<organization>
|
||||
|
|
@ -159,6 +167,11 @@
|
|||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>3.0.0-M1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-ear-plugin</artifactId>
|
||||
|
|
@ -369,6 +382,14 @@
|
|||
<tagBase>https://svn.libreccm.org/ccm/ccm_ng-releases</tagBase>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue