Skip to content

Commit

Permalink
Update maven artifactid from grails-console to grails-web-console
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesfredley committed Feb 20, 2025
1 parent 1972cf7 commit 266b865
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 266b865

Please sign in to comment.