summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-01-19 01:03:33 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-19 01:03:33 +0000
commit2eb8fa70e595a9100c917510f7f56c4ae368de3e (patch)
tree660acfb837ef7edae4223c3e02628d373562ef3b /components
parentbe503a7128ac0b4a3e9a6771103c79983fb9c4ca (diff)
parent1e6299583fea73e98f3ad017da81c1addf8beba5 (diff)
Merge "Fix classpath issue w/ guava"
Diffstat (limited to 'components')
-rw-r--r--components/parent/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/components/parent/pom.xml b/components/parent/pom.xml
index 8ecb2c1a2..365515aa1 100644
--- a/components/parent/pom.xml
+++ b/components/parent/pom.xml
@@ -304,7 +304,19 @@
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
+ <artifactId>kotlin-compiler-embeddable</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-scripting-jvm-host</artifactId>
+ <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
+ <!--guava dependency creating classpath issues at runtime-->
+ <exclusions>
+ <exclusion>
+ <groupId>org.jetbrains.kotlin</groupId>
+ <artifactId>kotlin-compiler</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- GRPC Dependencies -->
<dependency>