Jenkinsfile and maven build fixes
parent
6e60beb6c3
commit
34d1425fc5
|
@ -32,7 +32,7 @@ pipeline {
|
|||
}
|
||||
post {
|
||||
always{
|
||||
archiveArtifacts caseSensitive: false, onlyIfSuccessful: true, allowEmptyArchive: true, artifacts: 'db-scripts-generator/target/*.jar,**auth.war'
|
||||
archiveArtifacts caseSensitive: false, onlyIfSuccessful: true, allowEmptyArchive: true, artifacts: 'openid-connect-server-webapp/target/*.war'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<target>${java-version}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- BUILD SOURCE FILES -->
|
||||
<!--<!– BUILD SOURCE FILES –>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
|
@ -58,7 +58,7 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- BUILD JavaDoc FILES -->
|
||||
<!– BUILD JavaDoc FILES –>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
|
@ -70,7 +70,7 @@
|
|||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugin>-->
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
<target>${java-version}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- BUILD SOURCE FILES -->
|
||||
<!--<!– BUILD SOURCE FILES –>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
|
@ -114,19 +114,19 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- BUILD JavaDoc FILES -->
|
||||
<!– BUILD JavaDoc FILES –>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugin>-->
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue