-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stop Spring Bom from being applied twice #348
Comments
Yes, the grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy Line 189 in 755b810
I don't know if this causes a problem, and if it does, I don't see how we can prevent it, other than not applying the |
@matrei I am imagining we can just eliminate
and just apply our bom directly. |
it turns out grails-bom is being applied twice so that means the spring-bom is being applied 3 times 😮 asset-pipeline-grails-5.0.5.pom <dependencyManagement>
<dependencies>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-bom</artifactId>
<version>7.0.0-SNAPSHOT</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-bom</artifactId>
<version>7.0.0-SNAPSHOT</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.3.5</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement> |
Now that the Spring Bom is parent to grails-bom.
The following code needs to be evaluated:
grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy
Lines 173 to 184 in 755b810
The text was updated successfully, but these errors were encountered: