diff --git a/README.md b/README.md index 86291671..30a91c82 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ on how to do that, including how to develop and test locally and the versioning ## Release Notes +### 9.1.0 +*Released*: 23 June 2026 +(Earliest compatible LabKey version: 26.6.0) +- Update `ModuleFinder.isModuleContainer` to use `hasProperty` instead of `findProperty` for better future compatibility + ### 9.0.0 *Released*: 20 May 2026 (Earliest compatible LabKey version: 26.6.0) diff --git a/build.gradle b/build.gradle index 6b20a3e1..d7f6fb45 100644 --- a/build.gradle +++ b/build.gradle @@ -43,7 +43,7 @@ dependencies { } group = 'org.labkey.build' -project.version = "9.1.0-SNAPSHOT" +project.version = "9.2.0-SNAPSHOT" gradlePlugin { plugins { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index df6a6ad7..eb84db68 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/src/main/groovy/org/labkey/gradle/util/ModuleFinder.groovy b/src/main/groovy/org/labkey/gradle/util/ModuleFinder.groovy index e3767636..242a4561 100644 --- a/src/main/groovy/org/labkey/gradle/util/ModuleFinder.groovy +++ b/src/main/groovy/org/labkey/gradle/util/ModuleFinder.groovy @@ -81,7 +81,7 @@ class ModuleFinder extends SimpleFileVisitor static boolean isModuleContainer(Project p) { - return (p.findProperty("moduleContainer") && p.path.equalsIgnoreCase((String) p.property("moduleContainer"))) + return (p.hasProperty("moduleContainer") && p.path.equalsIgnoreCase((String) p.property("moduleContainer"))) } static boolean isPotentialModule(Project p)