From 1e73ec342a583bca6cd6795b88bb16319e388f86 Mon Sep 17 00:00:00 2001 From: Bryan Date: Thu, 8 Oct 2020 13:04:37 -0600 Subject: [PATCH] auto_generate_release_plugins (#73) --- OSGi/com.dotcms.3rd.party/build.gradle | 2 +- OSGi/com.dotcms.actionlet/build.gradle | 2 +- OSGi/com.dotcms.aop/build.gradle | 4 ++-- OSGi/com.dotcms.custom.spring/build.gradle | 2 +- OSGi/com.dotcms.dynamic.skeleton/build.gradle | 2 +- OSGi/com.dotcms.fixasset/build.gradle | 2 +- OSGi/com.dotcms.hooks/build.gradle | 2 +- OSGi/com.dotcms.job/build.gradle | 2 +- OSGi/com.dotcms.override/build.gradle | 2 +- OSGi/com.dotcms.portlet/build.gradle | 2 +- OSGi/com.dotcms.pushpublish.listener/build.gradle | 2 +- OSGi/com.dotcms.rest/build.gradle | 2 +- .../build.gradle | 2 +- OSGi/com.dotcms.ruleengine.visitoripconditionlet/build.gradle | 2 +- OSGi/com.dotcms.servlet/build.gradle | 2 +- OSGi/com.dotcms.simpleService/build.gradle | 2 +- OSGi/com.dotcms.spring/build.gradle | 2 +- OSGi/com.dotcms.staticpublish.listener/build.gradle | 2 +- OSGi/com.dotcms.tuckey/build.gradle | 2 +- OSGi/com.dotcms.viewtool/build.gradle | 2 +- OSGi/com.dotcms.webinterceptor/build.gradle | 2 +- static/com.dotcms.hook/build.gradle | 2 +- static/com.dotcms.macro/build.gradle | 2 +- static/com.dotcms.portlet/build.gradle | 2 +- static/com.dotcms.servlet/build.gradle | 2 +- static/com.dotcms.skeleton/build.gradle | 2 +- static/com.dotcms.viewtool/build.gradle | 2 +- 27 files changed, 28 insertions(+), 28 deletions(-) diff --git a/OSGi/com.dotcms.3rd.party/build.gradle b/OSGi/com.dotcms.3rd.party/build.gradle index 9b8af86b..a3435843 100644 --- a/OSGi/com.dotcms.3rd.party/build.gradle +++ b/OSGi/com.dotcms.3rd.party/build.gradle @@ -11,7 +11,7 @@ repositories { dependencies { compile fileTree(dir: 'src/main/resources/libs', include: '*.jar') - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.actionlet/build.gradle b/OSGi/com.dotcms.actionlet/build.gradle index f4e8784d..d684a0ff 100644 --- a/OSGi/com.dotcms.actionlet/build.gradle +++ b/OSGi/com.dotcms.actionlet/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.aop/build.gradle b/OSGi/com.dotcms.aop/build.gradle index c7fad006..05c09839 100644 --- a/OSGi/com.dotcms.aop/build.gradle +++ b/OSGi/com.dotcms.aop/build.gradle @@ -74,10 +74,10 @@ dependencies { ajc "org.aspectj:aspectjtools:1.8.10" providedCompile "org.aspectj:aspectjrt:1.8.10" - providedCompile (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + providedCompile (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } - aspects (group: 'com.dotcms', name: 'dotcms', version: '5.3.8') + aspects (group: 'com.dotcms', name: 'dotcms', version: '5.3.9') providedCompile "javax.servlet:javax.servlet-api:3.1.0" } diff --git a/OSGi/com.dotcms.custom.spring/build.gradle b/OSGi/com.dotcms.custom.spring/build.gradle index 475db37a..a4c6f272 100644 --- a/OSGi/com.dotcms.custom.spring/build.gradle +++ b/OSGi/com.dotcms.custom.spring/build.gradle @@ -14,7 +14,7 @@ configurations { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } //Resolve dependencies. These jars can be downloaded from our Maven Repo //In case you want to create a Controller using other Spring version, //just change the version Attribute. diff --git a/OSGi/com.dotcms.dynamic.skeleton/build.gradle b/OSGi/com.dotcms.dynamic.skeleton/build.gradle index ce0d0d5b..1e715a3e 100644 --- a/OSGi/com.dotcms.dynamic.skeleton/build.gradle +++ b/OSGi/com.dotcms.dynamic.skeleton/build.gradle @@ -23,7 +23,7 @@ dependencies { // include all jars within the resource libs compile fileTree(dir: 'src/main/resources/libs', include: '*.jar') // Using all jar from artifactory part of the dotcms group - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.fixasset/build.gradle b/OSGi/com.dotcms.fixasset/build.gradle index 78a51a46..b2bf42df 100644 --- a/OSGi/com.dotcms.fixasset/build.gradle +++ b/OSGi/com.dotcms.fixasset/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.hooks/build.gradle b/OSGi/com.dotcms.hooks/build.gradle index 2f813845..976484fe 100644 --- a/OSGi/com.dotcms.hooks/build.gradle +++ b/OSGi/com.dotcms.hooks/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.job/build.gradle b/OSGi/com.dotcms.job/build.gradle index b79d66c0..c78206ff 100644 --- a/OSGi/com.dotcms.job/build.gradle +++ b/OSGi/com.dotcms.job/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.override/build.gradle b/OSGi/com.dotcms.override/build.gradle index 56a33a2f..c424dddb 100644 --- a/OSGi/com.dotcms.override/build.gradle +++ b/OSGi/com.dotcms.override/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.portlet/build.gradle b/OSGi/com.dotcms.portlet/build.gradle index 2579d940..d6f38326 100644 --- a/OSGi/com.dotcms.portlet/build.gradle +++ b/OSGi/com.dotcms.portlet/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.pushpublish.listener/build.gradle b/OSGi/com.dotcms.pushpublish.listener/build.gradle index 1cd215ec..5af8fd9f 100644 --- a/OSGi/com.dotcms.pushpublish.listener/build.gradle +++ b/OSGi/com.dotcms.pushpublish.listener/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.rest/build.gradle b/OSGi/com.dotcms.rest/build.gradle index 415e123d..f17943a9 100644 --- a/OSGi/com.dotcms.rest/build.gradle +++ b/OSGi/com.dotcms.rest/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.ruleengine.velocityscriptingactionlet/build.gradle b/OSGi/com.dotcms.ruleengine.velocityscriptingactionlet/build.gradle index 13170b04..5ad9f3c7 100644 --- a/OSGi/com.dotcms.ruleengine.velocityscriptingactionlet/build.gradle +++ b/OSGi/com.dotcms.ruleengine.velocityscriptingactionlet/build.gradle @@ -15,7 +15,7 @@ configurations { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } testCompile 'org.mockito:mockito-core:2.0.31-beta' testCompile 'org.hamcrest:hamcrest-all:1.3' diff --git a/OSGi/com.dotcms.ruleengine.visitoripconditionlet/build.gradle b/OSGi/com.dotcms.ruleengine.visitoripconditionlet/build.gradle index 14727463..0f521c43 100644 --- a/OSGi/com.dotcms.ruleengine.visitoripconditionlet/build.gradle +++ b/OSGi/com.dotcms.ruleengine.visitoripconditionlet/build.gradle @@ -15,7 +15,7 @@ configurations { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } testCompile 'org.mockito:mockito-core:2.0.31-beta' testCompile 'org.hamcrest:hamcrest-all:1.3' diff --git a/OSGi/com.dotcms.servlet/build.gradle b/OSGi/com.dotcms.servlet/build.gradle index ed99fcd2..8ac78108 100644 --- a/OSGi/com.dotcms.servlet/build.gradle +++ b/OSGi/com.dotcms.servlet/build.gradle @@ -11,7 +11,7 @@ repositories { dependencies { compile fileTree(dir: '../com.dotcms.simpleService/build/libs/', include: '*.jar')//As this example depends on the com.dotcms.simpleService example - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.simpleService/build.gradle b/OSGi/com.dotcms.simpleService/build.gradle index 97ee84b4..2c26e12b 100644 --- a/OSGi/com.dotcms.simpleService/build.gradle +++ b/OSGi/com.dotcms.simpleService/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.spring/build.gradle b/OSGi/com.dotcms.spring/build.gradle index c2c7b580..db9739c2 100644 --- a/OSGi/com.dotcms.spring/build.gradle +++ b/OSGi/com.dotcms.spring/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.staticpublish.listener/build.gradle b/OSGi/com.dotcms.staticpublish.listener/build.gradle index 80b52c80..d2052980 100644 --- a/OSGi/com.dotcms.staticpublish.listener/build.gradle +++ b/OSGi/com.dotcms.staticpublish.listener/build.gradle @@ -14,7 +14,7 @@ configurations { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } compileOnly('com.hierynomus:sshj:0.23.0'){ exclude group: 'org.bouncycastle' //Why we exlude? See README's important notes. diff --git a/OSGi/com.dotcms.tuckey/build.gradle b/OSGi/com.dotcms.tuckey/build.gradle index 9f54842d..da79ef37 100644 --- a/OSGi/com.dotcms.tuckey/build.gradle +++ b/OSGi/com.dotcms.tuckey/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.viewtool/build.gradle b/OSGi/com.dotcms.viewtool/build.gradle index 7a854d35..bbd66b8e 100644 --- a/OSGi/com.dotcms.viewtool/build.gradle +++ b/OSGi/com.dotcms.viewtool/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/OSGi/com.dotcms.webinterceptor/build.gradle b/OSGi/com.dotcms.webinterceptor/build.gradle index 6b050dfe..f2400355 100644 --- a/OSGi/com.dotcms.webinterceptor/build.gradle +++ b/OSGi/com.dotcms.webinterceptor/build.gradle @@ -10,7 +10,7 @@ repositories { } dependencies { - compile('com.dotcms:dotcms:5.3.8') { transitive = true } + compile('com.dotcms:dotcms:5.3.9') { transitive = true } } import java.util.jar.* diff --git a/static/com.dotcms.hook/build.gradle b/static/com.dotcms.hook/build.gradle index 398975d1..aff68a43 100644 --- a/static/com.dotcms.hook/build.gradle +++ b/static/com.dotcms.hook/build.gradle @@ -16,7 +16,7 @@ repositories { // In this section you declare the dependencies for your production and test code dependencies { compileOnly fileTree(dir: 'lib', include: '*.jar') - compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } } diff --git a/static/com.dotcms.macro/build.gradle b/static/com.dotcms.macro/build.gradle index 398975d1..aff68a43 100644 --- a/static/com.dotcms.macro/build.gradle +++ b/static/com.dotcms.macro/build.gradle @@ -16,7 +16,7 @@ repositories { // In this section you declare the dependencies for your production and test code dependencies { compileOnly fileTree(dir: 'lib', include: '*.jar') - compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } } diff --git a/static/com.dotcms.portlet/build.gradle b/static/com.dotcms.portlet/build.gradle index 398975d1..aff68a43 100644 --- a/static/com.dotcms.portlet/build.gradle +++ b/static/com.dotcms.portlet/build.gradle @@ -16,7 +16,7 @@ repositories { // In this section you declare the dependencies for your production and test code dependencies { compileOnly fileTree(dir: 'lib', include: '*.jar') - compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } } diff --git a/static/com.dotcms.servlet/build.gradle b/static/com.dotcms.servlet/build.gradle index a05e0d5e..d7577d54 100644 --- a/static/com.dotcms.servlet/build.gradle +++ b/static/com.dotcms.servlet/build.gradle @@ -16,7 +16,7 @@ repositories { // In this section you declare the dependencies for your production and test code dependencies { compileOnly fileTree(dir: 'lib', include: '*.jar') - compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1' diff --git a/static/com.dotcms.skeleton/build.gradle b/static/com.dotcms.skeleton/build.gradle index 398975d1..aff68a43 100644 --- a/static/com.dotcms.skeleton/build.gradle +++ b/static/com.dotcms.skeleton/build.gradle @@ -16,7 +16,7 @@ repositories { // In this section you declare the dependencies for your production and test code dependencies { compileOnly fileTree(dir: 'lib', include: '*.jar') - compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } } diff --git a/static/com.dotcms.viewtool/build.gradle b/static/com.dotcms.viewtool/build.gradle index 398975d1..aff68a43 100644 --- a/static/com.dotcms.viewtool/build.gradle +++ b/static/com.dotcms.viewtool/build.gradle @@ -16,7 +16,7 @@ repositories { // In this section you declare the dependencies for your production and test code dependencies { compileOnly fileTree(dir: 'lib', include: '*.jar') - compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.8'){ + compileOnly (group: 'com.dotcms', name: 'dotcms', version: '5.3.9'){ transitive = true } }