Skip to content

Commit e28ab80

Browse files
authored
Merge pull request #1241 from rainboyan
* pr/1241: 'grace-web-gsp-taglib' has been consolidated into 'grace-web-taglib' and 'grace-plugin-gsp' Closes gh-1241
2 parents 737b52f + 1c31338 commit e28ab80

File tree

12 files changed

+21
-28
lines changed

12 files changed

+21
-28
lines changed

grace-plugin-gsp/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ dependencies {
44
api project(":grace-core")
55
api project(":grace-plugin-api")
66
api project(":grace-plugin-codecs")
7+
api project(':grace-web-gsp')
8+
api project(":grace-web-jsp")
79
api project(":grace-web-mvc")
10+
api project(":grace-web-sitemesh")
11+
api project(":grace-web-taglib")
812
api project(":grace-web-url-mappings")
9-
api project(":grace-web-gsp-taglib")
10-
api project(":grace-web-jsp")
1113
api libs.spring.boot.autoconfigure
1214
annotationProcessor libs.spring.boot.autoconfigureProcessor
1315
annotationProcessor libs.spring.boot.configurationProcessor

grace-plugin-gsp/src/main/groovy/org/grails/plugins/web/GroovyPagesAutoConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022-2024 the original author or authors.
2+
* Copyright 2022-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.
@@ -62,9 +62,9 @@
6262
import org.grails.web.pages.DefaultGroovyPagesUriService;
6363
import org.grails.web.pages.FilteringCodecsByContentTypeSettings;
6464
import org.grails.web.pages.GroovyPagesServlet;
65-
import org.grails.web.pages.StandaloneTagLibraryLookup;
6665
import org.grails.web.servlet.view.GroovyPageViewResolver;
6766
import org.grails.web.sitemesh.GroovyPageLayoutFinder;
67+
import org.grails.web.taglib.StandaloneTagLibraryLookup;
6868
import org.grails.web.util.GrailsApplicationAttributes;
6969

7070
/**

grace-web-gsp-taglib/src/main/groovy/org/grails/plugins/web/taglib/RenderTagInvocationContextCustomizer.java renamed to grace-plugin-gsp/src/main/groovy/org/grails/plugins/web/taglib/RenderTagInvocationContextCustomizer.java

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2011-2023 the original author or authors.
2+
* Copyright 2011-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.
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
grails.compiler.traits.TraitInjector=grails.compiler.traits.ControllerTagLibraryTraitInjector
2-
org.grails.taglib.TagInvocationContextCustomizer=org.grails.plugins.web.taglib.ApplicationTagInvocationContextCustomizer
1+
grails.compiler.traits.TraitInjector=\
2+
grails.compiler.traits.ControllerTagLibraryTraitInjector
3+
4+
org.grails.taglib.TagInvocationContextCustomizer=\
5+
org.grails.plugins.web.taglib.ApplicationTagInvocationContextCustomizer,\
6+
org.grails.plugins.web.taglib.RenderTagInvocationContextCustomizer
7+
8+
org.grails.taglib.NamespacedTagDispatcher=\
9+
org.grails.plugins.web.taglib.TemplateNamespacedTagDispatcher

grace-web-gsp-taglib/README.md

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

grace-web-gsp-taglib/build.gradle

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

grace-web-gsp-taglib/src/main/resources/META-INF/grails.factories

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

0 commit comments

Comments
 (0)