This is an automated email from the ASF dual-hosted git repository.
deepak pushed a commit to branch release17.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release17.12 by this push:
new 8a4a68e Fixed: Used the jdk 8 compatible version for gradle-svntools-plugin (OFBIZ-11601) build.grale using latest.release of gradle-svntools-plugin, and gradle-svntools-plugin release its latest release on 19th with jdk11 compatible. So this is causing build failure
8a4a68e is described below
commit 8a4a68e9f9d5527c4a33bac1caafd3c7e8d8ac91
Author: Deepak Dixit <
[hidden email]>
AuthorDate: Mon Apr 20 11:37:27 2020 +0530
Fixed: Used the jdk 8 compatible version for gradle-svntools-plugin
(OFBIZ-11601)
build.grale using latest.release of gradle-svntools-plugin, and gradle-svntools-plugin release its latest release on 19th with jdk11 compatible. So this is causing build failure
---
build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index 0848b70..272381f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -28,7 +28,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'at.bxm.gradleplugins:gradle-svntools-plugin:latest.release'
+ classpath 'at.bxm.gradleplugins:gradle-svntools-plugin:2.2.1'
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.8.1' // Rather than using 1.5.9.2 see OFBIZ-10693
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16'
}