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 @@ -258,8 +258,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.0-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.3.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.3.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
2 changes: 1 addition & 1 deletion misc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
implementation project(':mail')
implementation project(':tls')

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

// The example smoke tests (src/test) drive the S/MIME and OpenPGP examples
// via their main() methods; they need JUnit and the same javax.mail runtime
Expand Down
8 changes: 4 additions & 4 deletions mls/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

plugins {
// OSGI
id "biz.aQute.bnd.builder" version "7.1.0"
id "biz.aQute.bnd.builder" version "7.3.0"
// Provide convenience executables for trying out the examples.
id 'application'
id 'com.google.protobuf' version '0.9.4'
id 'com.google.protobuf' version '0.10.0'
// Generate IntelliJ IDEA's .idea & .iml project files
// id 'idea'
}
Expand Down Expand Up @@ -68,8 +68,8 @@ evaluationDependsOn(":prov")
evaluationDependsOn(":util")
evaluationDependsOn(":pkix")

def grpcVersion = '1.58.0' // CURRENT_GRPC_VERSION
def protocVersion = '3.22.3'
def grpcVersion = '1.83.1' // CURRENT_GRPC_VERSION
def protocVersion = '3.25.9'


checkstyleMain {
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.3.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.3.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.3.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.3.0"
}

dependencies {
Expand Down
Loading
Loading