Skip to content

Commit

Permalink
Released 3.1.0 rc2 (#170)
Browse files Browse the repository at this point in the history
* Release 3.1.0-RC2

* refs #158: update gradle script to release to Sonatype Nexus

* refs #158: prepare for next development
  • Loading branch information
KengoTODA committed May 23, 2017
1 parent 1b0df2c commit 533b6be
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 49 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

html_context = {
'version' : '3.1',
'full_version' : '3.1.0-RC1'
'full_version' : '3.1.0-RC2'
}

# If extensions (or modules to document with autodoc) are in another directory,
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Introduction
SpotBugs is a program to find bugs in Java programs.
It looks for instances of "bug patterns" --- code instances that are likely to be errors.

This document describes version 3.1.0-RC1 of SpotBugs.
This document describes version 3.1.0-RC2 of SpotBugs.
We are very interested in getting your feedback on SpotBugs.
Please visit the SpotBugs web page for the latest information on SpotBugs, contact information, and support resources such as information about the SpotBugs GitHub organization.

Expand Down
4 changes: 2 additions & 2 deletions docs/locale/ja/LC_MESSAGES/introduction.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: spotbugs 3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-19 01:16+0000\n"
"POT-Creation-Date: 2017-05-12 22:06+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand All @@ -33,7 +33,7 @@ msgstr ""
#: ../../introduction.rst:7
#, fuzzy
msgid ""
"This document describes version 3.1.0-RC1 of SpotBugs. We are very "
"This document describes version 3.1.0-RC2 of SpotBugs. We are very "
"interested in getting your feedback on SpotBugs. Please visit the "
"SpotBugs web page for the latest information on SpotBugs, contact "
"information, and support resources such as information about the SpotBugs"
Expand Down
30 changes: 17 additions & 13 deletions docs/locale/ja/LC_MESSAGES/migration.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: spotbugs 3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-14 15:09+0000\n"
"POT-Creation-Date: 2017-05-12 22:06+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down Expand Up @@ -82,32 +82,26 @@ msgid "FindBugs Gradle plugin"
msgstr ""

#: ../../migration.rst:121
msgid ""
"Please use findbugs plugin without the dependency on findbugs. You need "
"to add the dependency on ``spotbugs`` instead."
msgid "Please use spotbugs plugin found on https://plugins.gradle.org"
msgstr ""

#: ../../migration.rst:135
msgid "In near future we release SpotBugs Gradle plugin."
msgstr ""

#: ../../migration.rst:138
#: ../../migration.rst:130
msgid "FindBugs Eclipse plugin"
msgstr ""

#: ../../migration.rst:140
#: ../../migration.rst:132
msgid "Please use following update site instead."
msgstr ""

#: ../../migration.rst:142
#: ../../migration.rst:134
msgid "https://spotbugs.github.io/eclipse/ (to use stable version, not ready yet)"
msgstr ""

#: ../../migration.rst:143
#: ../../migration.rst:135
msgid "https://spotbugs.github.io/eclipse-candidate/ (to use candidate version)"
msgstr ""

#: ../../migration.rst:145
#: ../../migration.rst:137
msgid "Currently the update site for daily built plugin isn't ready."
msgstr ""

Expand All @@ -120,3 +114,13 @@ msgstr ""
#~ msgid "TBU"
#~ msgstr ""

#~ msgid ""
#~ "Please use findbugs plugin without the"
#~ " dependency on findbugs. You need to"
#~ " add the dependency on ``spotbugs`` "
#~ "instead."
#~ msgstr ""

#~ msgid "In near future we release SpotBugs Gradle plugin."
#~ msgstr ""

21 changes: 2 additions & 19 deletions eclipsePlugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply from: "$rootDir/gradle/maven.gradle"
// TODO: deploy not only jar but also sources and javadoc, to pass validation by Sonatype nexus
// apply from: "$rootDir/gradle/maven.gradle"

if (version.endsWith('-SNAPSHOT')) {
// eclipse doesn't like the `-SNAPSHOT`, so we timestamp uniquely
Expand Down Expand Up @@ -234,21 +235,3 @@ task eclipseSiteZip(type:Zip, dependsOn:eclipseSite) {
}

tasks['assemble'].dependsOn eclipseSite

artifacts {
archives jar

// deploy site zip to Maven central, to upload it to official update site https://spotbugs.github.io/
archives eclipseSiteZip
}

uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'SpotBugs Eclipse Plugin'
description "Eclpse Plugin to integrate SpotBugs daily development"
}
}
}
}
2 changes: 1 addition & 1 deletion gradlePlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins{

apply from: "$rootDir/gradle/checkstyle.gradle"

version = "1.0"
version = "1.1-SNAPSHOT"
group = "com.github.spotbugs"

dependencies {
Expand Down
12 changes: 0 additions & 12 deletions spotbugs-tests/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
apply from: "$rootDir/gradle/checkstyle.gradle"
apply from: "$rootDir/gradle/maven.gradle"

sourceSets {
main {
Expand Down Expand Up @@ -49,14 +48,3 @@ test {
artifacts {
archives jar, sourcesJar
}

uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'Tests for SpotBugs Plugin'
description 'JUnit tests for SpotBugs library'
}
}
}
}

0 comments on commit 533b6be

Please sign in to comment.