Skip to content

Commit a8f066d

Browse files
authored
Merge pull request #1244 from rainboyan
* pr/1244: Consolidate 'grace-web-databinding' into 'grace-web-common' Closes gh-1244
2 parents 9663510 + f030aa0 commit a8f066d

File tree

44 files changed

+29
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+29
-49
lines changed

grace-plugin-controllers/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ dependencies {
33
api project(":grace-bootstrap")
44
api project(":grace-core")
55
api project(":grace-plugin-api")
6+
api project(":grace-plugin-databinding")
67
api project(":grace-plugin-mimetypes")
78
api project(":grace-plugin-validation")
89
api project(":grace-util")

grace-plugin-databinding/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dependencies {
22
api project(":grace-api")
33
api project(":grace-plugin-api")
4-
api project(":grace-web-databinding")
4+
api project(":grace-web-common")
55

66
compileOnly libs.jakarta.servlet
77
api libs.spring.boot.autoconfigure

grace-web-databinding/src/main/groovy/grails/compiler/traits/WebDataBindingTraitInjector.groovy renamed to grace-plugin-databinding/src/main/groovy/grails/compiler/traits/WebDataBindingTraitInjector.groovy

File renamed without changes.

grace-web-databinding/src/main/groovy/grails/web/databinding/DataBinder.groovy renamed to grace-plugin-databinding/src/main/groovy/grails/web/databinding/DataBinder.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2022 the original author or authors.
2+
* Copyright 2014-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-web-databinding/src/main/groovy/grails/web/databinding/WebDataBinding.groovy renamed to grace-plugin-databinding/src/main/groovy/grails/web/databinding/WebDataBinding.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2022 the original author or authors.
2+
* Copyright 2014-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-web-databinding/src/main/resources/META-INF/grails.factories renamed to grace-plugin-databinding/src/main/resources/META-INF/grails.factories

File renamed without changes.

grace-web-databinding/src/test/groovy/grails/web/databinding/DataBinderTraitGeneratedSpec.groovy renamed to grace-plugin-databinding/src/test/groovy/grails/web/databinding/DataBinderTraitGeneratedSpec.groovy

File renamed without changes.

grace-web-databinding/src/test/groovy/grails/web/databinding/WebDataBindingTraitGeneratedSpec.groovy renamed to grace-plugin-databinding/src/test/groovy/grails/web/databinding/WebDataBindingTraitGeneratedSpec.groovy

File renamed without changes.

grace-plugin-fields/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
dependencies {
2+
api project(":grace-plugin-databinding")
23
api project(":grace-plugin-validation")
34
api project(":grace-scaffolding-core")
4-
api project(":grace-web-databinding")
5+
api project(":grace-web-common")
56
api project(":grace-web-gsp")
67
api project(":grace-web-taglib")
78
implementation libs.grace.datastore.core

grace-test-suite-web/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
testImplementation project(":grace-plugin-controllers")
2424
testImplementation project(":grace-plugin-rest")
2525
testImplementation project(":grace-web")
26-
testImplementation project(":grace-web-databinding")
26+
testImplementation project(":grace-web-common")
2727
testImplementation project(":grace-spring")
2828
testImplementation project(":grace-test-support")
2929

0 commit comments

Comments
 (0)