Skip to content

Commit 8ee356f

Browse files
committed
Create grace-web-rest module
Closes gh-1255
1 parent 78c01f8 commit 8ee356f

File tree

14 files changed

+27
-8
lines changed

14 files changed

+27
-8
lines changed

grace-plugin-rest/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dependencies {
55
api project(':grace-plugin-api')
66
api project(":grace-plugin-controllers")
77
api project(":grace-plugin-converters")
8+
api project(":grace-web-rest")
89
api project(":grace-web-url-mappings")
910
api project(":grace-util")
1011

grace-web-rest/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## grace-web-rest

grace-web-rest/build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
dependencies {
2+
api project(":grace-web")
3+
api project(":grace-web-gsp")
4+
api project(":grace-web-mvc")
5+
api project(":grace-web-url-mappings")
6+
7+
compileOnlyApi libs.jakarta.servlet
8+
compileOnly(libs.grace.datastore.gorm) {
9+
transitive = false
10+
}
11+
compileOnly libs.grace.datastore.gorm.support
12+
implementation libs.caffeine
13+
14+
testImplementation libs.jakarta.servlet
15+
testImplementation libs.spring.test
16+
}

grace-plugin-rest/src/main/groovy/grails/rest/render/AbstractIncludeExcludeRenderer.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/AbstractIncludeExcludeRenderer.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2022 the original author or authors.
2+
* Copyright 2013-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

grace-plugin-rest/src/main/groovy/grails/rest/render/AbstractRenderContext.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/AbstractRenderContext.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

grace-plugin-rest/src/main/groovy/grails/rest/render/AbstractRenderer.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/AbstractRenderer.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

grace-plugin-rest/src/main/groovy/grails/rest/render/ContainerRenderer.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/ContainerRenderer.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2023 the original author or authors.
2+
* Copyright 2013-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

grace-plugin-rest/src/main/groovy/grails/rest/render/RenderContext.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/RenderContext.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2023 the original author or authors.
2+
* Copyright 2013-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

grace-plugin-rest/src/main/groovy/grails/rest/render/Renderer.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/Renderer.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2022 the original author or authors.
2+
* Copyright 2013-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

grace-plugin-rest/src/main/groovy/grails/rest/render/RendererRegistry.groovy renamed to grace-web-rest/src/main/groovy/grails/rest/render/RendererRegistry.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2022 the original author or authors.
2+
* Copyright 2013-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)