Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion grace-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dependencies {

api(libs.slf4j.api)
api(libs.spring.beans)
compileOnly(libs.spring.boot)
api libs.spring.context, {
exclude group: 'io.micrometer', module: 'micrometer-observation'
}
Expand Down
1 change: 1 addition & 0 deletions grace-plugin-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dependencies {
api libs.spring.boot.autoconfigure
api libs.spring.context
api libs.spring.core
compileOnly libs.spring.tx
annotationProcessor libs.spring.boot.autoconfigureProcessor
annotationProcessor libs.spring.boot.configurationProcessor

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2004-2024 the original author or authors.
* Copyright 2004-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -28,12 +28,12 @@ import grails.plugins.Plugin
import grails.util.Environment
import grails.util.GrailsUtil

import org.grails.beans.support.PropertiesEditor
import org.grails.core.support.ClassEditor
import org.grails.dev.support.DevelopmentShutdownHook
import org.grails.spring.DefaultRuntimeSpringConfiguration
import org.grails.spring.RuntimeSpringConfigUtilities
import org.grails.spring.RuntimeSpringConfiguration
import org.grails.spring.beans.support.ClassEditor
import org.grails.spring.beans.support.PropertiesEditor

/**
* Configures the core shared beans within the Grails application context.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2009-2023 the original author or authors.
* Copyright 2009-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2004-2022 the original author or authors.
* Copyright 2004-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package grails.spring
package org.grails.spring.context.support

import org.springframework.context.ApplicationContext

import grails.core.DefaultGrailsApplication
import spock.lang.Issue
import spock.lang.Specification

import org.grails.spring.context.support.GrailsPlaceholderConfigurer
import grails.spring.BeanBuilder

/**
* @author Graeme Rocher
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package grails.spring
package org.grails.spring.context.support

import grails.spring.BeanBuilder
import grails.util.Holders
import grails.core.DefaultGrailsApplication
import org.grails.spring.context.support.GrailsPlaceholderConfigurer
import spock.lang.Issue
import spock.lang.Specification

Expand Down
1 change: 0 additions & 1 deletion grace-plugin-i18n/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dependencies {
api project(":grace-api")
api project(":grace-bootstrap")
api project(":grace-core")
api project(":grace-plugin-api")
api project(":grace-util")
compileOnly project(":grace-web-common")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2016-2023 the original author or authors.
* Copyright 2016-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2016-2022 the original author or authors.
* Copyright 2016-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2011-2022 the original author or authors.
* Copyright 2011-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
3 changes: 1 addition & 2 deletions grace-spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api libs.spring.boot
api libs.spring.context
api libs.spring.core
compileOnly libs.spring.tx

testImplementation project(":grace-test-support")
testImplementation project(":grace-core")
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2023 the original author or authors.
* Copyright 2015-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,6 +25,7 @@ import org.springframework.util.StringUtils
*
* This class behavior is closely tied to {@link org.grails.config.NavigableMap} which will be removed in future release.
* @author Graeme Rocher
* @author Michael Yan
* @since 3.0.7
*/
@CompileStatic
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2004-2023 the original author or authors.
* Copyright 2004-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.grails.core.support;
package org.grails.spring.beans.support;

import java.beans.PropertyEditorSupport;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2014-2022 the original author or authors.
* Copyright 2014-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.grails.beans.support;
package org.grails.spring.beans.support;

import java.util.Map;
import java.util.Properties;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.grails.core.cfg
package org.grails.spring.boot.env

import org.grails.config.PropertySourcesConfig
import org.springframework.core.env.MutablePropertySources
Expand All @@ -7,8 +7,6 @@ import org.springframework.core.io.FileSystemResource
import org.springframework.core.io.Resource
import spock.lang.Specification

import org.grails.spring.boot.env.GroovyConfigPropertySourceLoader

@SuppressWarnings("GrMethodMayBeStatic")
class GroovyConfigPropertySourceLoaderSpec extends Specification {

Expand Down