Skip to content

Commit a085091

Browse files
Merge pull request #25 from MaxxtonGroup/feature/MXTS-77488
chore: MXTS-77488: build microdocs on gradle 9.6.1 / jdk 25 and cut 5.0.0
2 parents 0d94aa9 + 4c355f2 commit a085091

19 files changed

Lines changed: 132 additions & 151 deletions

File tree

microdocs-core-java/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ plugins {
33
id "java"
44
id "java-library"
55
id "maven-publish"
6-
id "com.maxxton.convention" version "3.3.2"
6+
id "com.maxxton.convention" version "5.0.0-RC-3"
77
}
88

99
// group and version come from gradle.properties, set before the
1010
// com.maxxton.convention plugin's PublishingConfiguration reads them.
1111

12-
// Publishing (mavenJava publication + maxxton-maven-registry repository) is
12+
// Publishing (mavenJava publication + maxxton-maven-virtual repository) is
1313
// auto-configured by the com.maxxton.convention plugin once maven-publish
1414
// and java are detected - see PublishingConfiguration in maxxton-conventions.
1515

1616
repositories {
1717
mavenCentral()
1818
maven {
19-
url "artifactregistry://europe-maven.pkg.dev/dynamic-concept-192711/maxxton-maven-registry"
19+
url "artifactregistry://europe-maven.pkg.dev/dynamic-concept-192711/maxxton-maven-virtual"
2020
}
2121
}
2222

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=com.maxxton
2-
version=4.0.2
2+
version=5.0.0
4.88 KB
Binary file not shown.

microdocs-core-java/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionSha256Sum=9c0f7faeeb306cb14e4279a3e084ca6b596894089a0638e68a07c945a32c9e14
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
45
networkTimeout=10000
56
validateDistributionUrl=true
67
zipStoreBase=GRADLE_USER_HOME

microdocs-core-java/gradlew

Lines changed: 9 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

microdocs-core-java/gradlew.bat

Lines changed: 24 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

microdocs-crawler-doclet/build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ dependencies {
1212
api gradleApi()
1313
api 'org.codehaus.groovy:groovy-all:2.5.8'
1414
api("com.fasterxml.jackson.core:jackson-databind:2.10.1")
15-
api("com.maxxton:microdocs-core-java:3.0.0")
15+
api("com.maxxton:microdocs-core-java:5.0.0")
1616
api("junit:junit:4.12")
1717
}
1818

1919
group = 'com.maxxton'
20-
version = '4.0.2'
20+
version = '5.0.0'
2121

2222
task fatJar(type: Jar) {
2323
manifest {
@@ -31,3 +31,9 @@ task fatJar(type: Jar) {
3131
include('com/fasterxml/**')
3232
with jar
3333
}
34+
35+
java {
36+
toolchain {
37+
languageVersion = JavaLanguageVersion.of(25)
38+
}
39+
}
4.88 KB
Binary file not shown.

microdocs-crawler-doclet/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionSha256Sum=9c0f7faeeb306cb14e4279a3e084ca6b596894089a0638e68a07c945a32c9e14
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
45
networkTimeout=10000
56
validateDistributionUrl=true
67
zipStoreBase=GRADLE_USER_HOME

microdocs-crawler-doclet/gradlew

Lines changed: 9 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)