Skip to content

Commit 04a31f9

Browse files
authored
Merge pull request #53 from gpc/chore/prepare-for-grails7-release
Chores - prepare for Grails 7 release
2 parents 6a88f39 + 5d32e38 commit 04a31f9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ dependencies {
5858
compileOnly platform("org.apache.grails:grails-bom:$grailsVersion")
5959
compileOnly 'org.apache.grails:grails-dependencies-starter-web'
6060

61-
api('org.xhtmlrenderer:flying-saucer-pdf-openpdf:9.4.0')
62-
api("org.apache.pdfbox:pdfbox:3.0.5")
61+
api('org.xhtmlrenderer:flying-saucer-pdf:9.9.5')
62+
api("org.apache.pdfbox:pdfbox:3.0.6")
6363

6464
testImplementation platform("org.apache.grails:grails-bom:$grailsVersion")
6565
testImplementation "org.apache.grails:grails-testing-support-datamapping"

example/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
## Grails 7.0.0-RC2 Documentation
22

3-
- [User Guide](https://docs.grails.org/7.0.0-RC2/guide/index.html)
4-
- [API Reference](https://docs.grails.org/7.0.0-RC2/api/index.html)
3+
- [User Guide](https://grails.apache.org/docs/7.0.0/guide/)
4+
- [API Reference](https://grails.apache.org/docs/7.0.0/api/)
55
- [Grails Guides](https://guides.grails.org/index.html)
66
---
77

88
## Feature scaffolding documentation
99

10-
- [Grails Scaffolding documentation](https://docs.grails.org/7.0.0-RC2/guide/scaffolding.html)
10+
- [Grails Scaffolding documentation](https://grails.apache.org/docs/7.0.0/guide/scaffolding.html)
1111

1212
## Feature asset-pipeline-grails documentation
1313

@@ -19,7 +19,7 @@
1919

2020
## Feature geb-with-testcontainers documentation
2121

22-
- [Grails Geb Functional Testing for Grails with Testcontainers documentation](https://github.com/apache/grails-geb#readme)
22+
- [Grails Geb Functional Testing for Grails with Testcontainers documentation](https://github.com/apache/grails-core/tree/HEAD/grails-geb#readme)
2323

2424
- [https://groovy.apache.org/geb/manual/current/](https://groovy.apache.org/geb/manual/current/)
2525

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
projectVersion=7.0.0-SNAPSHOT
2-
grailsVersion=7.0.0-RC2
2+
grailsVersion=7.0.0
33
javaVersion=17
44
asciidoctorGradlePluginVersion=4.0.5
55

src/main/groovy/grails/plugins/rendering/RenderingGrailsPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ class RenderingGrailsPlugin extends Plugin {
3636
def authorEmail = "grails.plugin.collective@gmail.com"
3737
def title = "Grails Rendering"
3838
def description = 'Render GSPs as PDFs, JPEGs, GIFs and PNGs'
39-
def documentation = "http://gpc.github.com/grails-rendering"
39+
def documentation = "https://gpc.github.io/rendering/"
4040

4141
def license = 'APACHE'
4242
def organization = [name: 'Grails Plugin Collective', url: 'https://github.com/gpc']
43-
def issueManagement = [system: 'JIRA', url: 'https://github.com/gpc/rendering/issues']
43+
def issueManagement = [system: 'GitHub', url: 'https://github.com/gpc/rendering/issues']
4444
def scm = [url: 'https://github.com/gpc/rendering.git']
4545

4646
}

0 commit comments

Comments
 (0)