Skip to content

Commit

Permalink
Update dependencies to match grails-core -> grails-bom
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesfredley committed Jan 6, 2025
1 parent 1a86d4b commit ad80493
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions grails-forge-core/src/main/resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>hibernate5</artifactId>
<version>8.1.0</version>
<version>8.1.1</version>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>database-migration</artifactId>
<version>4.2.1</version>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
Expand All @@ -50,7 +50,7 @@
<dependency>
<groupId>org.asciidoctor.jvm.convert</groupId>
<artifactId>asciidoctor-gradle-jvm</artifactId>
<version>4.0.0-alpha.1</version>
<version>4.0.3</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Expand All @@ -60,7 +60,7 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>4.11.3</version>
<version>4.11.5</version>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
Expand Down Expand Up @@ -135,7 +135,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.3</version>
<version>5.10.5</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AsciidoctorSpec extends ApplicationContextSpec implements CommandOutputFix
final def buildGradle = output["build.gradle"]

expect:
buildGradle.contains("id \"org.asciidoctor.jvm.convert\" version \"4.0.0-alpha.1\"")
buildGradle.contains("id \"org.asciidoctor.jvm.convert\" version \"4.0.3\"")
buildGradle.contains("apply from: \"gradle/asciidoc.gradle\"")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class HibernateGormSpec extends ApplicationContextSpec implements CommandOutputF
.renderBuildSrc()

then:
template.contains('implementation "org.grails.plugins:hibernate5:8.1.0"')
template.contains('implementation "org.grails.plugins:hibernate5:8.1.1"')
}

void "test buildSrc is present for buildscript dependencies"() {
Expand All @@ -51,7 +51,7 @@ class HibernateGormSpec extends ApplicationContextSpec implements CommandOutputF

expect:
buildGradle != null
buildGradle.contains("classpath \"org.grails.plugins:hibernate5:8.1.0\"")
buildGradle.contains("classpath \"org.grails.plugins:hibernate5:8.1.1\"")

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class MongoSyncSpec extends ApplicationContextSpec implements CommandOutputFixtu
.render()

then:
template.contains('implementation "org.mongodb:mongodb-driver-sync:4.11.3"')
template.contains('implementation "org.mongodb:mongodb-driver-sync:4.11.5"')
template.contains('testImplementation "org.testcontainers:mongodb"')
}
}

0 comments on commit ad80493

Please sign in to comment.