-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307 from grails/patch-gradle89
Upgrading to Gradle 8.9
- Loading branch information
Showing
8 changed files
with
49 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
src/main/groovy/org/grails/gradle/plugin/model/DefaultGrailsClasspath.groovy
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
src/main/groovy/org/grails/gradle/plugin/model/GrailsClasspath.groovy
This file was deleted.
Oops, something went wrong.
14 changes: 11 additions & 3 deletions
14
src/main/groovy/org/grails/gradle/plugin/web/gsp/GspCompileOptions.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
package org.grails.gradle.plugin.web.gsp | ||
|
||
import org.gradle.api.model.ObjectFactory | ||
import org.gradle.api.tasks.Input | ||
import org.gradle.api.tasks.Nested | ||
import org.gradle.api.tasks.compile.AbstractOptions | ||
import org.gradle.api.tasks.compile.BaseForkOptions | ||
import org.gradle.api.tasks.compile.GroovyForkOptions | ||
import javax.inject.Inject; | ||
|
||
/** | ||
* Presents the Compile Options used by the {@llink GroovyPageForkCompileTask} | ||
* | ||
* @author David Estes | ||
* @since 4.0 | ||
*/ | ||
class GspCompileOptions implements Serializable { | ||
class GspCompileOptions extends AbstractOptions { | ||
private static final long serialVersionUID = 0L; | ||
|
||
@Input | ||
String encoding = "UTF-8" | ||
String encoding = "UTF-8" | ||
|
||
@Inject | ||
protected ObjectFactory getObjectFactory() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Nested | ||
GroovyForkOptions forkOptions = new GroovyForkOptions() | ||
GroovyForkOptions forkOptions = getObjectFactory().newInstance(GroovyForkOptions.class) | ||
} |