Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,18 @@ on how to do that, including how to develop and test locally and the versioning

## Release Notes

### TBD
*Released*: TBD
(Earliest compatible LabKey version: 26.6.0)
- Update to Gradle 9.5.1
- Remove GWT plugin and extension
- Fix caching bug related to output file declaration for `ClientLibsCompress` task

### 8.2.0
*Released*: 11 May 2026
(Earliest compatible LabKey version: 26.5.0)
- Add `BuildUtils.hasArtifactoryProperties` method for brevity
- Add cacheability annotations to tasks so they work with stricter plugin validation
- Update to Gradle 9.5.0

### 8.1.0
*Released*: 22 April 2026
Expand Down
6 changes: 1 addition & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
}

group = 'org.labkey.build'
project.version = "8.3.0-SNAPSHOT"
project.version = "8.3.0-removeGwt-SNAPSHOT"

gradlePlugin {
plugins {
Expand Down Expand Up @@ -75,10 +75,6 @@ gradlePlugin {
id = 'org.labkey.build.fileModule'
implementationClass = 'org.labkey.gradle.plugin.FileModule'
}
gwt {
id = 'org.labkey.build.gwt'
implementationClass = 'org.labkey.gradle.plugin.Gwt'
}
javaModule {
id = 'org.labkey.build.javaModule'
implementationClass = 'org.labkey.gradle.plugin.JavaModule'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 10 additions & 21 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/groovy/org/labkey/gradle/plugin/Api.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Api implements Plugin<Project>
{
api {
java {
srcDirs = [project.file(SOURCE_DIR).exists() ? SOURCE_DIR : ALT_SOURCE_DIR, 'internal/gwtsrc']
srcDirs = [project.file(SOURCE_DIR).exists() ? SOURCE_DIR : ALT_SOURCE_DIR]
}
resources {
srcDirs = ["schemas"]
Expand Down
1 change: 0 additions & 1 deletion src/main/groovy/org/labkey/gradle/plugin/FileModule.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ class FileModule implements Plugin<Project>
jar.from project.labkey.explodedModuleDir
jar.exclude '**/*.uptodate'
jar.exclude "META-INF/${project.name}/**"
jar.exclude 'gwt-unitCache/**'
jar.archiveBaseName.set(project.name)
jar.archiveExtension.set('module')
jar.destinationDirectory.set(project.layout.buildDirectory)
Expand Down
199 changes: 0 additions & 199 deletions src/main/groovy/org/labkey/gradle/plugin/Gwt.groovy

This file was deleted.

3 changes: 0 additions & 3 deletions src/main/groovy/org/labkey/gradle/plugin/JavaModule.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,6 @@ class JavaModule implements Plugin<Project>
if (Jsp.isApplicable(project))
project.apply plugin: 'org.labkey.build.jsp'

if (Gwt.isApplicable(project))
project.apply plugin: 'org.labkey.build.gwt'

if (UiTest.isApplicable(project))
{
project.apply plugin: 'org.labkey.build.uiTest'
Expand Down

This file was deleted.

Loading