Skip to content

Commit

Permalink
Merge pull request #947 from jdaugherty/9.0.x
Browse files Browse the repository at this point in the history
Fixes found after pre release for mongodb
  • Loading branch information
jdaugherty authored Dec 21, 2024
2 parents 48e59ad + c0f33db commit 694d2f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
2 changes: 2 additions & 0 deletions boot-plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dependencies {
implementation platform("org.grails:grails-bom:$grailsVersion")

compileOnly "org.grails:grails-shell", {
exclude group:'org.apache.groovy', module:'groovy'
}
Expand Down
15 changes: 2 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ allprojects {
}
}
if (System.getenv("GITHUB_MAVEN_PASSWORD") && !grailsVersion.endsWith('-SNAPSHOT')) {
System.out.println("Adding Grails Core Repo")
System.out.println("Adding Grails Core Repo for ${project.name}")
maven {
url = 'https://maven.pkg.github.com/grails/grails-core'
credentials {
Expand Down Expand Up @@ -102,11 +102,6 @@ subprojects { Project subproject ->
}

dependencies {

// Global dependencies for every app should be added here with great caution.
// Gorm is used by other frameworks (ie springboot, micronaut, etc) and we
// don't want to add dependencies that would make it harder to use in those frameworks.

testImplementation "jakarta.annotation:jakarta.annotation-api"
testImplementation "io.micrometer:micrometer-core:latest.integration"
testImplementation "io.projectreactor:reactor-test"
Expand Down Expand Up @@ -171,10 +166,6 @@ subprojects { Project subproject ->

apply plugin: 'groovy'

dependencies {
implementation platform("org.grails:grails-bom:$grailsVersion")
}

configurations {
documentation.extendsFrom(compileClasspath)
}
Expand Down Expand Up @@ -203,10 +194,8 @@ subprojects { Project subproject ->
apply plugin: 'maven-publish'
apply plugin: 'signing'

compileJava.options.release = 17
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
withJavadocJar()
withSourcesJar()
}
Expand Down
2 changes: 2 additions & 0 deletions grails-datastore-gorm-hibernate/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dependencies {
implementation platform("org.grails:grails-bom:$grailsVersion")

api "org.slf4j:slf4j-api"

api "org.apache.groovy:groovy"
Expand Down

0 comments on commit 694d2f2

Please sign in to comment.