Skip to content
Open
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
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
id "io.spring.nohttp" version "0.0.11"
id "checkstyle"
id "jacoco"
id "net.ltgt.errorprone" version "4.2.0"
id "net.ltgt.errorprone" version "4.4.0"
id 'maven-publish'
}

Expand Down Expand Up @@ -262,8 +262,8 @@ configure(subprojects.findAll {it.name != 'bom'}) {

dependencies {
checkstyle files("$rootDir/config/checkstyle/lib/methodchecker-1.0.0.jar")
checkstyle 'com.puppycrawl.tools:checkstyle:9.0'
errorprone "com.google.errorprone:error_prone_core:2.43.0"
checkstyle 'com.puppycrawl.tools:checkstyle:9.3'
errorprone "com.google.errorprone:error_prone_core:2.50.0"
}

checkstyle {
Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'application'

dependencies {
implementation group: 'org.openjdk.jmh', name: 'jmh-core', version: '1.33'
annotationProcessor group: 'org.openjdk.jmh', name: 'jmh-generator-annprocess', version: '1.33'
implementation group: 'org.openjdk.jmh', name: 'jmh-core', version: '1.37'
annotationProcessor group: 'org.openjdk.jmh', name: 'jmh-generator-annprocess', version: '1.37'
}
application {
mainClass.set("org.bouncycastle.crypto.fpe.SP80038GMicroBenchmark")
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
9 changes: 3 additions & 6 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

176 changes: 82 additions & 94 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions jmail/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

plugins {
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
}

jar.archiveBaseName = "bcjmail-$vmrange"
Expand All @@ -25,8 +25,8 @@ dependencies {
implementation project(':util')
implementation project(':pkix')

implementation group: 'jakarta.mail', name: 'jakarta.mail-api', version: '2.0.1'
implementation group: 'jakarta.activation', name: 'jakarta.activation-api', version: '2.0.0'
implementation group: 'jakarta.mail', name: 'jakarta.mail-api', version: '2.1.5'
implementation group: 'jakarta.activation', name: 'jakarta.activation-api', version: '2.1.4'

java9Implementation files(sourceSets.main.output.classesDirs) {
builtBy compileJava
Expand Down Expand Up @@ -63,7 +63,7 @@ compileJava9Java {
def pkix_jar="${project(":pkix").jar.outputs.files.getFiles().getAt(0)}"

options.compilerArgs += [
'--module-path', "$prov_jar${File.pathSeparator}$util_jar${File.pathSeparator}$pkix_jar${File.pathSeparator}${rootProject.projectDir}/libs/jakarta.mail-2.0.1.jar${File.pathSeparator}${rootProject.projectDir}/libs/jakarta.activation-api-2.0.0.jar"
'--module-path', "$prov_jar${File.pathSeparator}$util_jar${File.pathSeparator}$pkix_jar${File.pathSeparator}${rootProject.projectDir}/libs/jakarta.mail-2.1.5.jar${File.pathSeparator}${rootProject.projectDir}/libs/jakarta.activation-api-2.1.4.jar"
]
options.sourcepath = files(['build/src/main/java', 'src/main/jdk1.9'])

Expand Down
6 changes: 3 additions & 3 deletions mail/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
}

jar.archiveBaseName = "bcmail-$vmrange"
Expand All @@ -21,11 +21,11 @@ dependencies {
implementation project(':util')
implementation project(':pkix')

implementation group: 'javax.mail', name: 'mail', version: '1.4'
implementation group: 'javax.mail', name: 'mail', version: '1.4.7'
// javax.mail:mail:1.4 pulls in javax.activation:activation:1.1 transitively - both are
// needed as automatic modules ("mail", "activation") on the module-info.java compile path,
// since neither javax.mail nor javax.activation is a JDK-bundled module on Java 11+.
mailModulePath group: 'javax.mail', name: 'mail', version: '1.4'
mailModulePath group: 'javax.mail', name: 'mail', version: '1.4.7'

java9Implementation files(sourceSets.main.output.classesDirs) {
builtBy compileJava
Expand Down
4 changes: 2 additions & 2 deletions misc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
// published mls module because it is a test tool for the RFC 9420 interoperability runner,
// not library API: shipping it in bcmls put classes needing io.grpc and com.google.protobuf
// into a published jar whose POM and OSGi manifest declared neither.
id 'com.google.protobuf' version '0.9.4'
id 'com.google.protobuf' version '0.10.0'
}

apply plugin: 'com.google.protobuf'
Expand Down Expand Up @@ -42,7 +42,7 @@ dependencies {
implementation project(':tls')
implementation project(':mls')

implementation group: 'javax.mail', name: 'mail', version: '1.4'
implementation group: 'javax.mail', name: 'mail', version: '1.4.7'

// The MLS interop harness only, and by coordinate rather than as hand-placed jars under
// test/libs, which were invisible both to Dependabot (see the note on files()/fileTree()
Expand Down
2 changes: 1 addition & 1 deletion mls/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

plugins {
// OSGI
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
// Generate IntelliJ IDEA's .idea & .iml project files
// id 'idea'
}
Expand Down
2 changes: 1 addition & 1 deletion pg/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

plugins {
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
}

sourceSets {
Expand Down
10 changes: 5 additions & 5 deletions pgsc/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

plugins {
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
}

dependencies {
Expand All @@ -15,11 +15,11 @@ dependencies {
// without YubiKit; an application that wants the YubiKey backend adds
// com.yubico.yubikit:openpgp and com.yubico.yubikit:desktop
// to its own classpath, and gets a NoClassDefFoundError from the yubikey package if it does not.
compileOnly group: 'com.yubico.yubikit', name: 'openpgp', version: '3.1.0'
compileOnly group: 'com.yubico.yubikit', name: 'desktop', version: '3.1.0'
compileOnly group: 'com.yubico.yubikit', name: 'openpgp', version: '3.2.0'
compileOnly group: 'com.yubico.yubikit', name: 'desktop', version: '3.2.0'

testImplementation group: 'com.yubico.yubikit', name: 'openpgp', version: '3.1.0'
testImplementation group: 'com.yubico.yubikit', name: 'desktop', version: '3.1.0'
testImplementation group: 'com.yubico.yubikit', name: 'openpgp', version: '3.2.0'
testImplementation group: 'com.yubico.yubikit', name: 'desktop', version: '3.2.0'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}

Expand Down
2 changes: 1 addition & 1 deletion pkix/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

plugins {
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion prov/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.4.0"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ dependencies {
implementation project(":pkix")
implementation project(":prov")
implementation project(":tls")
testImplementation group: 'junit', name: 'junit', version: '4.11'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}

Loading