Skip to content

Commit a477132

Browse files
committed
Changed reference to core source.
1 parent a29b3fc commit a477132

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
}
1818

1919
println("Environment setup:")
20-
["BC_JDK8", "BC_JDK11", "BC_JDK17"].each({ it ->
20+
["BC_JDK8", "BC_JDK11", "BC_JDK17","BC_JDK21", "BC_JDK25"].each({ it ->
2121
println("Looking for JDK ENV '${it}' found ${System.getenv(it)}");
2222
// if (System.getenv(it) == null) {
2323
// throw new RuntimeException("Looking for JDK ENV '${it}' but found null, see README 'Environmental variables'");

prov/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ evaluationDependsOn(":core")
1313
sourceSets {
1414
main {
1515
java {
16-
srcDirs = ["${project(":core").projectDir}/src/main/java","src/main/java"]
16+
srcDirs = ["${projectDir}/../core/src/main/java","src/main/java"]
1717
}
1818
resources {
19-
srcDirs= ["${project(":core").projectDir}/src/main/resources","src/main/resources"]
19+
srcDirs= ["${projectDir}/../core/src/main/resources","src/main/resources"]
2020
}
2121
}
2222

run_mtt.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ echo ""
1414
# are correctly exported by another module.
1515
#
1616

17-
levels=( "9" "11" "17" "21" )
17+
levels=( "9" "11" "17" "21" "25" )
1818

1919
for level in "${levels[@]}"
2020
do

0 commit comments

Comments
 (0)