Skip to content

Commit

Permalink
Upgrade to Grace 2022.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Jan 19, 2024
1 parent 4d274d8 commit caf90e3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
17 changes: 8 additions & 9 deletions asset-pipeline-plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
// mavenLocal()
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
maven { url 'https://repo.gradle.org/gradle/libs-releases' }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
classpath "org.graceframework:grace-gradle-plugin:$graceVersion"
}
}

Expand All @@ -18,16 +16,15 @@ group "org.graceframework.plugins"

apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "org.grails.grails-plugin"
apply plugin: "org.grails.grails-gsp"
apply plugin: "org.grails.grails-doc"
apply plugin: "org.graceframework.grace-plugin"
apply plugin: "org.graceframework.grace-gsp"
apply plugin: "org.graceframework.grace-doc"
// apply plugin: 'maven-publish'
apply plugin: 'signing'

// Used for publishing to central repository, remove if not needed
ext {
isReleaseVersion = !version.endsWith('SNAPSHOT')
grailsVersion = project.grailsVersion
websiteUrl = "http://www.asset-pipeline.com"
vcsUrl = "https://github.com/bertramdev/grails-asset-pipeline/tree/grails3"
issueTrackerUrl = "https://github.com/bertramdev/grails-asset-pipeline/issues"
Expand All @@ -50,7 +47,7 @@ repositories {

dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
mavenBom "org.graceframework:grace-bom:$graceVersion"
}
applyMavenExclusions false
}
Expand Down Expand Up @@ -108,6 +105,8 @@ dependencies {
compileOnly "org.springframework.boot:spring-boot-starter-tomcat"

compileOnly "org.graceframework:grace-boot:$graceVersion"
implementation "org.graceframework:grace-web-common:$graceVersion"
implementation "org.graceframework:grace-web-url-mappings:$graceVersion"
implementation "commons-lang:commons-lang:2.6"
implementation "com.github.ben-manes.caffeine:caffeine:2.9.3"
compileOnly 'javax.servlet:javax.servlet-api:4.0.1'
Expand Down
4 changes: 1 addition & 3 deletions asset-pipeline-plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
grailsVersion=5.1.10
grailsGradlePluginVersion=5.1.5
graceVersion=2021.0.2
graceVersion=2022.0.0

websiteUrl=http://www.asset-pipeline.com
issueTrackerUrl=https://github.com/bertramdev/grails-asset-pipeline/issues
Expand Down

0 comments on commit caf90e3

Please sign in to comment.