Skip to content

Commit

Permalink
avoid using a dead dependency (jsr305)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnrd committed Sep 15, 2023
1 parent eddd593 commit 600c44d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ dependencies {
testImplementation "org.opentest4j:opentest4j:$openTest4jVersion"
testImplementation "org.eclipse.xtext:org.eclipse.xtext.testing:$xtextVersion"
testImplementation "org.eclipse.xtext:org.eclipse.xtext.xbase.testing:$xtextVersion"

// For spotbugs annotations
compileOnly "com.github.spotbugs:spotbugs-annotations:$spotbugsToolVersion"
compileOnly "net.jcip:jcip-annotations:$jcipVersion"
}

configurations {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/lflang/Target.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;
import java.util.Optional;
import java.util.Set;
import javax.annotation.concurrent.Immutable;
import net.jcip.annotations.Immutable;
import org.lflang.lf.TargetDecl;

/**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jacocoVersion=0.8.7
jsonVersion=20200518
jupiterVersion=5.8.2
jUnitPlatformVersion=1.8.2
klighdVersion=2.3.0.v20230606
kotlinJvmTarget=17
lsp4jVersion=0.21.0
mwe2LaunchVersion=2.14.0
Expand All @@ -22,6 +21,7 @@ klighdVersion=2.3.0.v20230606
freehepVersion=2.4
swtVersion=3.124.0
spotbugsToolVersion=4.7.3
jcipVersion=1.0

[manifestPropertyNames]
org.eclipse.xtext=xtextVersion
Expand Down

0 comments on commit 600c44d

Please sign in to comment.