mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-06 23:52:12 +01:00
fix restdoc generation and append restdoc artifact to buildjob
This commit is contained in:
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@@ -26,7 +26,7 @@ node('docker') {
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
mvn 'clean install -DskipTests'
|
||||
mvn 'clean install -Pdoc -DskipTests'
|
||||
}
|
||||
|
||||
stage('Unit Test') {
|
||||
@@ -53,6 +53,7 @@ node('docker') {
|
||||
stage('Archive') {
|
||||
archiveArtifacts 'scm-webapp/target/scm-webapp.war'
|
||||
archiveArtifacts 'scm-server/target/scm-server-app.*'
|
||||
archiveArtifacts 'scm-webapp/target/scm-webapp-restdocs.zip'
|
||||
}
|
||||
|
||||
stage('Docker') {
|
||||
|
||||
2
pom.xml
2
pom.xml
@@ -777,7 +777,7 @@
|
||||
<jaxrs.version>2.0.1</jaxrs.version>
|
||||
<resteasy.version>3.1.3.Final</resteasy.version>
|
||||
<jersey-client.version>1.19.4</jersey-client.version>
|
||||
<enunciate.version>2.9.1</enunciate.version>
|
||||
<enunciate.version>2.11.1</enunciate.version>
|
||||
<jackson.version>2.8.6</jackson.version>
|
||||
<guice.version>4.0</guice.version>
|
||||
|
||||
|
||||
@@ -137,7 +137,7 @@
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>doc</id>
|
||||
<id>plugin-doc</id>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
@@ -896,6 +896,11 @@
|
||||
<artifactId>enunciate-lombok</artifactId>
|
||||
<version>${enunciate.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mapstruct</groupId>
|
||||
<artifactId>mapstruct-processor</artifactId>
|
||||
<version>${org.mapstruct.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user