Skip to content

Commit

Permalink
Merge pull request #530 from grails/change-grails-web-console-artifactid
Browse files Browse the repository at this point in the history
Update maven artifactid from grails-console to grails-web-console
  • Loading branch information
jamesfredley authored Feb 20, 2025
2 parents 1972cf7 + 266b865 commit 27b042a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public String getDescription() {
public void apply(GeneratorContext generatorContext) {
generatorContext.addDependency(Dependency.builder()
.groupId("org.grails.plugins")
.artifactId("grails-console")
.lookupArtifactId("grails-web-console")
.runtimeOnly());

final Map<String, Object> config = generatorContext.getConfiguration();
Expand Down
5 changes: 5 additions & 0 deletions grails-forge-core/src/main/resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,10 @@
<artifactId>micronaut-serde-jackson</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>grails-web-console</artifactId>
<version>7.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class GrailsWebConsoleSpec extends BeanContextSpec {
.render()

then:
template.contains("runtimeOnly \"org.grails.plugins:grails-console\"")
template.contains("runtimeOnly \"org.grails.plugins:grails-web-console")
}

void "test config"() {
Expand Down

0 comments on commit 27b042a

Please sign in to comment.