Jenkinsfile and maven build fixes

pull/1601/head
Gaurav Katiyar 2018-09-26 13:51:28 +01:00
parent 6e60beb6c3
commit 34d1425fc5
3 changed files with 8 additions and 8 deletions

2
Jenkinsfile vendored
View File

@ -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'
}
}
}

View File

@ -45,7 +45,7 @@
<target>${java-version}</target>
</configuration>
</plugin>
<!-- BUILD SOURCE FILES -->
<!--&lt;!&ndash; BUILD SOURCE FILES &ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@ -58,7 +58,7 @@
</execution>
</executions>
</plugin>
<!-- BUILD JavaDoc FILES -->
&lt;!&ndash; BUILD JavaDoc FILES &ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
@ -70,7 +70,7 @@
</goals>
</execution>
</executions>
</plugin>
</plugin>-->
</plugins>
</build>
</project>

View File

@ -101,7 +101,7 @@
<target>${java-version}</target>
</configuration>
</plugin>
<!-- BUILD SOURCE FILES -->
<!--&lt;!&ndash; BUILD SOURCE FILES &ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@ -114,19 +114,19 @@
</execution>
</executions>
</plugin>
<!-- BUILD JavaDoc FILES -->
&lt;!&ndash; BUILD JavaDoc FILES &ndash;&gt;
<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>