Skip to content

Commit

Permalink
Cleanup build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Apr 28, 2024
1 parent c9ac3f9 commit bb64ca9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ ext."signing.password" = project.hasProperty("signing.password") ? project.getPr
ext."signing.secretKeyRingFile" = project.hasProperty("signing.secretKeyRingFile") ? project.getProperty('signing.secretKeyRingFile') : ("${System.properties['user.home']}${File.separator}.gnupg${File.separator}secring.gpg")
ext.isReleaseVersion = !projectVersion.endsWith("SNAPSHOT")

ext {
springBootVersion = '2.6.6'
servletVersion = '4.0.1'
}

version projectVersion
group "org.graceframework.plugins"

Expand All @@ -29,8 +34,8 @@ repositories {
}

dependencies {
compileOnly "org.springframework.boot:spring-boot-autoconfigure:2.6.6"
compileOnly "javax.servlet:javax.servlet-api:4.0.1"
compileOnly "org.springframework.boot:spring-boot-autoconfigure:$springBootVersion"
compileOnly "javax.servlet:javax.servlet-api:$servletVersion"
compileOnly "org.graceframework:grace-core:$graceVersion"
compileOnly "org.graceframework:grace-web-common:$graceVersion"
}
Expand Down

0 comments on commit bb64ca9

Please sign in to comment.