Skip to content

Commit de42702

Browse files
committed
partial addition of Java25 support
1 parent 363a9da commit de42702

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tls/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ sourceSets {
1818
}
1919
}
2020

21+
java25 {
22+
java {
23+
srcDirs = ['src/main/jdk25']
24+
}
25+
}
26+
2127
test11 {
2228
java {
2329
compileClasspath += main.output + test.output
@@ -128,6 +134,9 @@ task sourcesJar(type: Jar) {
128134
into('META-INF/versions/9') {
129135
from sourceSets.java9.allSource
130136
}
137+
into('META-INF/versions/25') {
138+
from sourceSets.java25.allSource
139+
}
131140
}
132141

133142
jar {

0 commit comments

Comments
 (0)