Skip to content

Commit c3f5576

Browse files
Update the build script to ensure compatibility with Gradle 9. (#361)
1 parent eb254c4 commit c3f5576

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ group 'io.tiledb'
1212
version '0.26.0-SNAPSHOT'
1313

1414
repositories {
15-
jcenter()
1615
mavenCentral()
1716
maven {
1817
url "https://oss.sonatype.org/content/repositories/snapshots"
@@ -24,8 +23,10 @@ nexusStaging {
2423
password = System.getenv('SONATYPE_PASSWORD')
2524
}
2625

27-
sourceCompatibility = 1.8
28-
targetCompatibility = 1.8
26+
java {
27+
sourceCompatibility = 1.8
28+
targetCompatibility = 1.8
29+
}
2930

3031
sourceSets {
3132
main {

0 commit comments

Comments
 (0)