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 1 commit
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
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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 +51,7 @@ if (isReleaseVersion) {

allprojects {

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

repositories {
mavenCentral()
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ gormVersion=9.0.0-M2
gradleNexusPublishPluginVersion=2.0.0
grailsGradlePluginVersion=7.0.0-M2
grailsVersion=7.0.0-M1
groovyVersion=4.0.24
hibernateVersion=5.6.15.Final
liquibaseHibernate5Version=4.27.0
jbossTransactionApiVersion=2.0.0.Final
Expand Down
Loading