Skip to content

Commit 233621d

Browse files
committed
Fixed public jsr305 build, updated to version 2.0.2.
1 parent 4075f23 commit 233621d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

java_deps/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ifndef M2_HOME
3131
M2_HOME = $(shell echo $$HOME)/.m2
3232
endif
3333
JUNIT_DIR = $(M2_HOME)/repository/junit/junit/4.10
34-
JSR305_DIR = $(M2_HOME)/repository/com/google/code/findbugs/jsr305/2.0.1
34+
JSR305_DIR = $(M2_HOME)/repository/com/google/code/findbugs/jsr305/2.0.2
3535
HAMCREST_DIR = $(M2_HOME)/repository/org/hamcrest/hamcrest-core/1.1
3636
ICU4J_DIR = $(M2_HOME)/repository/com/ibm/icu/icu4j/51.1
3737

java_deps/jars.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ GUAVA_JAR = guava-13.0.jar
3232
ICU4J_JAR = icu4j-51.1.jar
3333
ICU4J_SOURCE_JAR = icu4j-51.1-sources.jar
3434

35-
JSR305_JAR = jsr305-2.0.1.jar
36-
JSR305_SOURCE_JAR = jsr305-2.0.1.jar
35+
JSR305_JAR = jsr305-2.0.2.jar
36+
JSR305_SOURCE_JAR = jsr305-2.0.2.jar
3737

3838
JUNIT_JAR = junit-4.10.jar
3939
JUNIT_SOURCE_JAR = junit-4.10-sources.jar

java_deps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>com.google.code.findbugs</groupId>
6363
<artifactId>jsr305</artifactId>
64-
<version>2.0.1</version>
64+
<version>2.0.2</version>
6565
<scope>compile</scope>
6666
</dependency>
6767
<dependency>

jsr305/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ JAVA_SOURCES = \
4141
javax/annotation/Nullable.java \
4242
javax/annotation/OverridingMethodsMustInvokeSuper.java \
4343
javax/annotation/ParametersAreNonnullByDefault.java \
44-
javax/annotation/ParametersAreNullableByDefault.java \
4544
javax/annotation/PropertyKey.java \
4645
javax/annotation/RegEx.java \
4746
javax/annotation/Signed.java \

0 commit comments

Comments
 (0)