Skip to content

Commit

Permalink
Version set to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
h3xstream committed Oct 3, 2014
1 parent 1f7d509 commit 9458942
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ test-output
#Build directories
bin/
build/
target/
target/

#Maven
*.versionsBackup
2 changes: 1 addition & 1 deletion findbugs-test-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-root-pom</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion plugin-deps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-root-pom</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-root-pom</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>findsecbugs-root-pom</artifactId>

<packaging>pom</packaging>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>

<name>Find Security Bugs root</name>

Expand Down
2 changes: 1 addition & 1 deletion website/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-root-pom</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
7 changes: 4 additions & 3 deletions website/src/main/groovy/BuildWebPage.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ rootXml.Detector.each { detector ->
bugsBinding['nbDetectors']++
}

downloadUrl = "http://search.maven.org/remotecontent?filepath=com/h3xstream/findsecbugs/findsecbugs-plugin/1.2.0/findsecbugs-plugin-1.2.0.jar"
latestVersion = "v 1.2.0"
downloadUrl = "http://search.maven.org/remotecontent?filepath=com/h3xstream/findsecbugs/findsecbugs-plugin/1.2.1/findsecbugs-plugin-1.2.1.jar"
mavenCentralSearch = "http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.h3xstream.findsecbugs%22%20a%3A%22findsecbugs-plugin%22"
latestVersion = "v 1.2.1"

//Generate

Expand All @@ -64,7 +65,7 @@ outputFile(outDir,"download.htm").withWriter {
w << engine.createTemplate(getTemplateReader("/common_header.htm")).make(
['title':'Download'])
w << engine.createTemplate(getTemplateReader("/download.htm")).make(
['downloadUrl':downloadUrl,'latestVersion':latestVersion])
['downloadUrl':downloadUrl,'latestVersion':latestVersion,'mavenCentralSearch':mavenCentralSearch])
w << engine.createTemplate(getTemplateReader("/common_footer.htm")).make()
}

Expand Down
4 changes: 2 additions & 2 deletions website/src/main/resources/download.htm
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
</p>

<p>
The official releases are push to <a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.h3xstream.findsecbugs%22%20a%3A%22findsecbugs-plugin%22">Maven Central repository</a>.
The official releases are push to <a href="$mavenCentralSearch">Maven Central repository</a>.
The manual download of the jar is only needed for integration with Ant and the IDEs.
</p>
<p>
<a href="$downloadUrl" class="download_button"><img src="down.png" alt="download icon" style="vertical-align:middle"/> Get the plugin $latestVersion</a>
<a href="http://findbugs.sourceforge.net/" class="download_button"><img src="down.png" alt="download icon" style="vertical-align:middle"/> Get Find Bugs</a>
<br/><br/>
<a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.h3xstream.findsecbugs%22%20a%3A%22findsecbugs-plugin%22">Browse all the releases</a>
<a href="$mavenCentralSearch">Browse all the releases</a>
</p>
<p>
Not sure how to integrate the plugin? Check the <a href="tutorials.htm">Tutorial section</a>.
Expand Down
2 changes: 1 addition & 1 deletion website/src/main/resources/home.htm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<a href="download.htm?startDl" class="download_button"><img src="down.png" alt="download icon" style="vertical-align:middle"/> Get the plugin $latestVersion</a>
<a href="http://findbugs.sourceforge.net/" class="download_button"><img src="down.png" alt="download icon" style="vertical-align:middle"/> Get Find Bugs</a>
<br/><br/>
(Latest package generated on <b>October 29th, 2013</b>)
(Latest package generated on <b>October 2nd, 2014</b>)
</center>

<br/><br/>
Expand Down

0 comments on commit 9458942

Please sign in to comment.