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
8 changes: 4 additions & 4 deletions build-logic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ gradlePlugin {

dependencies {
api gradleApi()
api 'biz.aQute.bnd:biz.aQute.bnd.gradle:6.0.0'
api 'gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0'
api 'biz.aQute.bnd:biz.aQute.bnd.gradle:6.3.1'
api 'gradle.plugin.com.github.johnrengelman:shadow:7.1.2'
api 'org.unbroken-dome.gradle-plugins:gradle-xjc-plugin:2.0.0'
api 'com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.9'
implementation 'biz.aQute.bnd:biz.aQute.bndlib:6.0.0'
api 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.12'
implementation 'biz.aQute.bnd:biz.aQute.bndlib:6.3.1'
implementation 'org.osgi:org.osgi.service.component.annotations:1.5.0'
implementation 'org.apache.felix:org.apache.felix.scr.generator:1.18.4'
implementation 'org.apache.felix:org.apache.felix.scr.ds-annotations:1.2.10'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public void apply(Project project) {

project.getConfigurations().all(config -> {
config.getResolutionStrategy().dependencySubstitution(subs -> {
subs.substitute(subs.module("org.hamcrest:hamcrest-core:1.3")).with(subs.module("org.hamcrest:hamcrest-core:" + project.property("hamcrestVersion")));
subs.substitute(subs.module("org.hamcrest:hamcrest-library:1.3")).with(subs.module("org.hamcrest:hamcrest-library:" + project.property("hamcrestVersion")));
subs.substitute(subs.module("org.hamcrest:hamcrest-core:1.3")).using(subs.module("org.hamcrest:hamcrest-core:" + project.property("hamcrestVersion")));
subs.substitute(subs.module("org.hamcrest:hamcrest-library:1.3")).using(subs.module("org.hamcrest:hamcrest-library:" + project.property("hamcrestVersion")));
});
});
}
Expand Down
4 changes: 2 additions & 2 deletions ehcache-107/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ task unpackTckTests(type: Sync) {
from {
configurations.tckTestClasses.collect {zipTree(it)}
}
into sourceSets.tckTest.java.outputDir
into sourceSets.tckTest.java.classesDirectory
}

task tckTest(type: Test, dependsOn: unpackTckTests) {
testClassesDirs = sourceSets.tckTest.output.classesDirs
classpath += sourceSets.tckTest.runtimeClasspath

binResultsDir file("$buildDir/tck-tests-results/binary/$name")
binaryResultsDirectory = file("$buildDir/tck-tests-results/binary/$name")
reports.junitXml.destination = file("$buildDir/tck-tests-results")
reports.html.destination = file("$buildDir/reports/tck-tests")

Expand Down
2 changes: 1 addition & 1 deletion ehcache-api/config/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<property name="scope" value="public"/>
</module>
<module name="JavadocMethod">
<property name="scope" value="public"/>
<property name="accessModifiers" value="public"/>
</module>
<module name="JavadocVariable">
<property name="scope" value="public"/>
Expand Down
2 changes: 1 addition & 1 deletion ehcache-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ task slowTest(type: Test) {
testClassesDirs = sourceSets.slowTest.output.classesDirs
classpath += sourceSets.slowTest.runtimeClasspath

binResultsDir file("$buildDir/slow-tests-results/binary/$name")
binaryResultsDirectory = file("$buildDir/slow-tests-results/binary/$name")
reports.junitXml.destination = file("$buildDir/slow-tests-results")
reports.html.destination = file("$buildDir/reports/slow-tests")
}
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,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
257 changes: 154 additions & 103 deletions gradlew

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

Loading