Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bytes/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ description = 'Classes and utilities for working with byte arrays.'
dependencies {
implementation 'org.connid:framework'
implementation 'org.connid:framework-internal'
implementation 'com.google.code.findbugs:jsr305'
implementation 'com.google.errorprone:error_prone_annotations'
compileOnly 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.errorprone:error_prone_annotations'
compileOnly 'io.vertx:vertx-core'

testImplementation 'io.vertx:vertx-core'
Expand Down
4 changes: 2 additions & 2 deletions concurrent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ description = 'Classes and utilities for working with concurrency.'

dependencies {
compileOnly 'io.vertx:vertx-core'
implementation 'com.google.code.findbugs:jsr305'
implementation 'com.google.errorprone:error_prone_annotations'
compileOnly 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.errorprone:error_prone_annotations'

testImplementation project(':junit')
testImplementation 'org.junit.jupiter:junit-jupiter-api'
Expand Down
2 changes: 1 addition & 1 deletion config/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = 'Classes and utilities for working with configuration.'

dependencies {
implementation project(':toml')
implementation 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.code.findbugs:jsr305'

testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
Expand Down
2 changes: 1 addition & 1 deletion crypto/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dependencies {
implementation project(':io')
implementation project(':units')
implementation 'com.github.jnr:jnr-ffi'
implementation 'com.google.code.findbugs:jsr305'

compileOnly 'com.google.code.findbugs:jsr305'
compileOnly 'org.bouncycastle:bcprov-jdk15on'
compileOnly 'org.miracl.milagro.amcl:milagro-crypto-java'

Expand Down
2 changes: 1 addition & 1 deletion plumtree/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
implementation project(':concurrent')
implementation project(':crypto')

implementation 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.code.findbugs:jsr305'
implementation 'com.fasterxml.jackson.core:jackson-databind'

compileOnly 'io.vertx:vertx-core'
Expand Down
3 changes: 2 additions & 1 deletion pow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ dependencies {
implementation project(':concurrent')
implementation project(':crypto')
implementation project(':units')
implementation 'com.google.code.findbugs:jsr305'
implementation 'org.bouncycastle:bcprov-jdk15on'

compileOnly 'com.google.code.findbugs:jsr305'

testImplementation project(':junit')
testImplementation 'org.bouncycastle:bcprov-jdk15on'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
Expand Down
4 changes: 3 additions & 1 deletion scuttlebutt-handshake/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ dependencies {
implementation project(':crypto')
implementation project(':scuttlebutt')
implementation 'org.slf4j:slf4j-api'
implementation 'com.google.code.findbugs:jsr305'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core'
implementation 'io.vertx:vertx-lang-kotlin-coroutines'
implementation 'io.vertx:vertx-core'

compileOnly 'com.google.code.findbugs:jsr305'


testImplementation project(':junit')

testImplementation 'org.bouncycastle:bcprov-jdk15on'
Expand Down
2 changes: 1 addition & 1 deletion toml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
antlr 'org.antlr:antlr4'

implementation 'org.antlr:antlr4-runtime'
implementation 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.code.findbugs:jsr305'

testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
Expand Down
2 changes: 1 addition & 1 deletion units/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = 'Classes and utilities for working with 256 bit integers.'

dependencies {
implementation project(':bytes')
implementation 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.code.findbugs:jsr305'

testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
Expand Down