Skip to content

Commit c3b32a4

Browse files
committed
Upgrade to Gradle 6.4.1
1 parent 37cf9cc commit c3b32a4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ sourceSets {
4141
}
4242

4343
dependencies {
44-
testCompile group: 'junit', name: 'junit', version: '4.11'
44+
testImplementation 'junit:junit:4.12'
4545
}
4646

4747
task cmakeTask(type: Exec) {
@@ -85,11 +85,14 @@ task generateJNI(type: Exec) {
8585

8686
import org.apache.tools.ant.taskdefs.condition.Os
8787
test {
88+
useJUnit()
89+
8890
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
8991
systemProperty "java.library.path", "$buildDir\\install\\bin;$buildDir\\tiledb_jni\\Release"
9092
} else {
9193
systemProperty "java.library.path", "$buildDir/install/lib:$buildDir/install/lib64:$buildDir/tiledb_jni"
9294
}
95+
9396
testLogging {
9497
showStandardStreams = true
9598
}

gradle/wrapper/gradle-wrapper.jar

1.72 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ pluginManagement {
1313
}
1414
}
1515
}
16-
enableFeaturePreview('STABLE_PUBLISHING')
1716
rootProject.name = 'tiledb-java'

0 commit comments

Comments
 (0)