You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This dependency is exported to consumers, that is to say found on their compile classpath.
18
-
api(libs.commons.math3)
19
-
20
-
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
21
-
implementation(libs.guava)
16
+
api(libs.commons.math3) // This dependency is exported to consumers, that is to say found on their compile classpath.
17
+
implementation(libs.guava) // This dependency is used internally, and not exposed to consumers on their own compile classpath.
22
18
}
23
19
24
20
// Apply a specific Java toolchain to ease working on different environments.
@@ -29,14 +25,35 @@ java {
29
25
}
30
26
31
27
tasks.named<Test>("test") {
32
-
// Use JUnit Platform for unit tests.
33
-
useJUnitPlatform()
34
-
// Set the JVM argument for the java.library.path (To import rust compiled library)
35
-
val rustLibPath = projectDir.resolve("../../target/release").absolutePath
28
+
val rustLibPath = projectDir.resolve("../../target/release").absolutePath // Set the JVM argument for the java.library.path (To import rust compiled library)
29
+
useJUnitPlatform() // Use JUnit Platform for unit tests.
0 commit comments