Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath platform("org.grails:grails-bom:$grailsVersion")
classpath "io.github.gradle-nexus:publish-plugin:$gradleNexusPublishPluginVersion"
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
classpath "org.grails.plugins:views-gradle:$viewsGradleVersion"
classpath "org.grails:grails-gradle-plugin"
classpath "org.grails.plugins:views-gradle"
classpath "org.asciidoctor:asciidoctor-gradle-jvm:$asciidoctorGradleVersion"
}
}
Expand All @@ -23,7 +24,7 @@ ext {
nexusUsername = System.getenv("SONATYPE_USERNAME") ?: project.hasProperty("sonatypeOssUsername") ? project.sonatypeOssUsername : ''
nexusPassword = System.getenv("SONATYPE_PASSWORD") ?: project.hasProperty("sonatypeOssPassword") ? project.sonatypeOssPassword : ''
isSnapshot = project.projectVersion.endsWith("-SNAPSHOT")
groovyVersion = System.getenv('CI_GROOVY_VERSION') ?: project.groovyVersion
groovyVersion = System.getenv('CI_GROOVY_VERSION')
}

ext."signing.keyId" = System.getenv("SIGNING_KEY") ?: project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : null
Expand Down Expand Up @@ -51,7 +52,7 @@ if (isReleaseVersion) {

allprojects {

ext.groovyVersion = System.getenv('CI_GROOVY_VERSION') ?: project.groovyVersion
ext.groovyVersion = System.getenv('CI_GROOVY_VERSION')

repositories {
mavenCentral()
Expand Down
9 changes: 3 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
projectVersion=9.0.0-SNAPSHOT
asciidoctorGradleVersion=4.0.3
gormVersion=9.0.0-M2
gormVersion=9.0.0-SNAPSHOT
gradleNexusPublishPluginVersion=2.0.0
grailsGradlePluginVersion=7.0.0-M2
grailsVersion=7.0.0-M1
groovyVersion=4.0.24
grailsVersion=7.0.0-SNAPSHOT
hibernateVersion=5.6.15.Final
liquibaseHibernate5Version=4.27.0
jbossTransactionApiVersion=2.0.0.Final
yakworksHibernateGroovyProxyVersion=1.1
micronautPlatformVersion=4.6.3
picocliVersion=4.7.6
springBootGradlePluginVersion=3.4.1
viewsGradleVersion=4.0.0-M1
springBootGradlePluginVersion=3.4.2

org.gradle.caching=true
org.gradle.parallel=false
Expand Down
3 changes: 2 additions & 1 deletion grails-database-migration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ buildscript {
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
classpath platform("org.grails:grails-bom:$grailsVersion")
classpath "org.grails:grails-gradle-plugin"
classpath "org.asciidoctor:asciidoctor-gradle-jvm:$asciidoctorGradleVersion"
}
}
Expand Down
Loading