Skip to content

Commit

Permalink
bump to 1.1.2 with fix for startup issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Collins committed Oct 24, 2022
1 parent dda4c5b commit ee70f8f
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ext {
drivers = ["firefox", "chrome", "chromeHeadless"]
}

version "1.1.1"
version "1.1.2"
group "au.org.ala"

apply plugin:"eclipse"
Expand Down Expand Up @@ -145,9 +145,18 @@ dependencies {

//compile 'org.grails.plugins:mail:2.0.0.RC6'

compile("org.xhtmlrenderer:core-renderer:R8")
compile("com.lowagie:itext:2.1.0")
compile 'org.grails.plugins:rendering:2.0.3'
compile("org.xhtmlrenderer:core-renderer:R8") {
exclude module: "bcprov-jdk14"
exclude module: "bcmail-jdk14"
}
compile("com.lowagie:itext:2.1.0") {
exclude module: "bcprov-jdk14"
exclude module: "bcmail-jdk14"
}
compile ('org.grails.plugins:rendering:2.0.3') {
exclude module: "bcprov-jdk14"
exclude module: "bcmail-jdk14"
}

implementation 'org.grails.plugins:external-config:2.0.0'

Expand Down Expand Up @@ -175,8 +184,8 @@ dependencies {

// db-migration
// In newer versions use 'implementation'
compile 'org.liquibase:liquibase-core:3.10.3'
compile "org.grails.plugins:database-migration:3.1.0"
// compile 'org.liquibase:liquibase-core:3.10.3'
// compile "org.grails.plugins:database-migration:3.1.0"
}

configurations {
Expand Down

0 comments on commit ee70f8f

Please sign in to comment.