From ee70f8f49a9a63d17c9fbf8b86f03b3cfdc74ba8 Mon Sep 17 00:00:00 2001 From: Adam Collins Date: Mon, 24 Oct 2022 12:23:53 +1000 Subject: [PATCH] bump to 1.1.2 with fix for startup issue --- build.gradle | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 763417c1..93c40fd0 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ ext { drivers = ["firefox", "chrome", "chromeHeadless"] } -version "1.1.1" +version "1.1.2" group "au.org.ala" apply plugin:"eclipse" @@ -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' @@ -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 {