Skip to content

Commit 6e67167

Browse files
committed
Create grace-boot-web module
Closes gh-1207
1 parent 29476e5 commit 6e67167

File tree

10 files changed

+26
-12
lines changed

10 files changed

+26
-12
lines changed

grace-boot-web/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## grace-boot-web
2+
3+
Module for building web, including RESTful, applications using Grace MVC, REST, and GSP. Uses Tomcat as the default embedded container.

grace-boot-web/build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
dependencies {
2+
api project(":grace-boot")
3+
api project(":grace-web")
4+
api project(":grace-plugin-codecs")
5+
api project(":grace-plugin-controllers")
6+
api project(":grace-plugin-converters")
7+
api project(":grace-plugin-databinding")
8+
api project(":grace-plugin-gsp")
9+
api project(":grace-plugin-i18n")
10+
api project(":grace-plugin-interceptors")
11+
api project(":grace-plugin-mimetypes")
12+
api project(":grace-plugin-rest")
13+
api project(":grace-plugin-url-mappings")
14+
api libs.spring.boot.starter
15+
api libs.spring.boot.starter.json
16+
api libs.spring.boot.starter.tomcat
17+
api libs.spring.web
18+
api libs.spring.webmvc
19+
}

grace-web-boot/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

grace-web-boot/build.gradle

Lines changed: 0 additions & 9 deletions
This file was deleted.

grace-web-boot/src/main/groovy/org/grails/boot/context/web/.gitkeep

Whitespace-only changes.

grace-web-boot/src/main/groovy/org/grails/compiler/boot/.gitkeep

Whitespace-only changes.

grace-web-boot/src/test/groovy/grails/boot/.gitkeep

Whitespace-only changes.

grace-web-boot/src/test/groovy/org/grails/.gitkeep

Whitespace-only changes.

gradle/libs.versions.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@ spring-boot-dependencies = { module = "org.springframework.boot:spring-boot-depe
199199
spring-boot-devtools = { module = "org.springframework.boot:spring-boot-devtools", version.ref = "spring-boot" }
200200
spring-boot-gradle-plugin = { module = "org.springframework.boot:spring-boot-gradle-plugin", version.ref = "spring-boot" }
201201
spring-boot-loader-tools = { module = "org.springframework.boot:spring-boot-loader-tools", version.ref = "spring-boot" }
202+
spring-boot-starter = { module = "org.springframework.boot:spring-boot-starter", version.ref = "spring-boot" }
203+
spring-boot-starter-json = { module = "org.springframework.boot:spring-boot-starter-json", version.ref = "spring-boot" }
204+
spring-boot-starter-tomcat = { module = "org.springframework.boot:spring-boot-starter-tomcat", version.ref = "spring-boot" }
202205
spring-boot-test = { module = "org.springframework.boot:spring-boot-test", version.ref = "spring-boot" }
203206
spring-context = { module = "org.springframework:spring-context", version.ref = "spring-framework" }
204207
spring-contextSupport = { module = "org.springframework:spring-context-support", version.ref = "spring-framework" }

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include (
44
'docs',
55
'grace-api',
66
'grace-boot',
7+
'grace-boot-web',
78
'grace-bootstrap',
89
'grace-cli',
910
'grace-codecs',

0 commit comments

Comments
 (0)