Skip to content

Commit 7b95ec4

Browse files
committed
Update to Gradle 7
1 parent 43b8846 commit 7b95ec4

File tree

6 files changed

+225
-145
lines changed

6 files changed

+225
-145
lines changed

gradle/guide-build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath "org.grails:grails-docs:3.2.7"
8+
classpath "org.grails:grails-docs:6.0.0-RC1"
99
}
1010
}
1111

@@ -16,7 +16,7 @@ def GRAILS_GUIDES_GROUP = 'X - Grails Guides'
1616

1717
def commonGithubOrg = 'grails'
1818
def commonGithubSlug = 'grails-guides'
19-
def commonBranch = 'master'
19+
def commonBranch = '6.0.x'
2020

2121
task prepareResources {
2222
group = GRAILS_GUIDES_GROUP
@@ -40,7 +40,7 @@ task copyLocalGuideImgResources(type: Copy) {
4040
include '*.svg'
4141
include '*.jpeg'
4242
}
43-
into "${buildDir}/resources/grails-guides-master/src/main/resources/img"
43+
into "${buildDir}/resources/grails-guides-6.0.x/src/main/resources/img"
4444
}
4545

4646
task publishGuide(type: grails.doc.gradle.PublishGuide) {
@@ -65,9 +65,9 @@ task publishGuide(type: grails.doc.gradle.PublishGuide) {
6565
'sourceDir':project.file('complete').absolutePath,
6666
'javaee': 'https://docs.oracle.com/javaee/7/api/',
6767
'javase': 'https://docs.oracle.com/javase/7/docs/api/',
68-
'groovyapi': 'http://docs.groovy-lang.org/latest/html/gapi/',
69-
'grailsapi': 'http://docs.grails.org/latest/api/',
70-
'gormapi': 'http://gorm.grails.org/latest/api/',
68+
'groovyapi': 'https://docs.groovy-lang.org/latest/html/gapi/',
69+
'grailsapi': 'https://docs.grails.org/latest/api/',
70+
'gormapi': 'https://gorm.grails.org/latest/api/',
7171
'springapi': 'https://docs.spring.io/spring/docs/current/javadoc-api/'
7272
]
7373
doLast {

gradle/wrapper/gradle-wrapper.jar

7.19 KB
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Apr 10 11:22:05 CEST 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip

0 commit comments

Comments
 (0)