mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-01-05 11:07:58 +01:00
Move jsr305 version to version.gradle
This commit is contained in:
parent
a6be316ed2
commit
5c1862fe7d
2 changed files with 4 additions and 3 deletions
|
@ -23,8 +23,9 @@ dependencies {
|
||||||
|
|
||||||
// CLI
|
// CLI
|
||||||
implementation "info.picocli:picocli:$picocliVersion"
|
implementation "info.picocli:picocli:$picocliVersion"
|
||||||
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
|
|
||||||
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
|
// @Nonnull, @Nullable...
|
||||||
|
implementation "com.google.code.findbugs:jsr305:$jsrVersion"
|
||||||
}
|
}
|
||||||
|
|
||||||
mainClassName = 'sop.cli.picocli.SopCLI'
|
mainClassName = 'sop.cli.picocli.SopCLI'
|
||||||
|
@ -48,4 +49,3 @@ jar {
|
||||||
exclude "META-INF/*.RSA"
|
exclude "META-INF/*.RSA"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,5 +12,6 @@ allprojects {
|
||||||
junitSysExitVersion = '1.1.2'
|
junitSysExitVersion = '1.1.2'
|
||||||
picocliVersion = '4.6.3'
|
picocliVersion = '4.6.3'
|
||||||
mockitoVersion = '4.5.1'
|
mockitoVersion = '4.5.1'
|
||||||
|
jsrVersion = '3.0.2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue