This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[JENKINS-31202] Make remaining plugins compatible to SimpleBuildStep.
checkstyle, dry, findbugs, pmd, tasks, analysis-collector.
- Loading branch information
Showing
with
96 additions
and 82 deletions.
- +8 −0 go.sh
- +57 −57 plugin/findbugs.iml
- +1 −1 plugin/pom.xml
- +14 −14 plugin/src/main/java/hudson/plugins/findbugs/FindBugsProjectAction.java
- +1 −10 plugin/src/main/java/hudson/plugins/findbugs/FindBugsPublisher.java
- +8 −0 plugin/src/main/java/hudson/plugins/findbugs/FindBugsResultAction.java
- +7 −0 release.sh
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,8 @@ | ||
rm -rf $JENKINS_HOME/plugins/findbugs* | ||
|
||
mvn install || { echo "Build failed"; exit 1; } | ||
|
||
cp -f target/*.hpi $JENKINS_HOME/plugins/ | ||
|
||
cd $JENKINS_HOME | ||
./go.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
git pull | ||
git push | ||
mvn -B -Djava.net.id=drulli release:prepare release:perform | ||
|
||
|