From 0e3005518ee8d5994661b4377ebfc17ffc36f523 Mon Sep 17 00:00:00 2001 From: Chris Rankin Date: Tue, 19 Sep 2017 15:05:54 +0100 Subject: [PATCH] Exclude kotlin-reflect artifact from any CorDapp. (#1555) --- constants.properties | 2 +- .../src/main/groovy/net/corda/plugins/Cordformation.groovy | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/constants.properties b/constants.properties index 0c4e4ef5b1..0df5b1245b 100644 --- a/constants.properties +++ b/constants.properties @@ -1,4 +1,4 @@ -gradlePluginsVersion=0.16.4 +gradlePluginsVersion=0.16.5 kotlinVersion=1.1.4 guavaVersion=21.0 bouncycastleVersion=1.57 diff --git a/gradle-plugins/cordformation/src/main/groovy/net/corda/plugins/Cordformation.groovy b/gradle-plugins/cordformation/src/main/groovy/net/corda/plugins/Cordformation.groovy index 60ca278dee..2fe24a7933 100644 --- a/gradle-plugins/cordformation/src/main/groovy/net/corda/plugins/Cordformation.groovy +++ b/gradle-plugins/cordformation/src/main/groovy/net/corda/plugins/Cordformation.groovy @@ -60,6 +60,7 @@ class Cordformation implements Plugin { def excludes = [ [group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib'], [group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jre8'], + [group: 'org.jetbrains.kotlin', name: 'kotlin-reflect'], [group: 'co.paralleluniverse', name: 'quasar-core'] ]