diff options
author | Dan Timoney <dtimoney@att.com> | 2019-01-19 01:03:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-19 01:03:33 +0000 |
commit | e03e5b5c4222f492bb02c231b3f2e65c1bb6690e (patch) | |
tree | 3887b63fd81701462c23281a862b9b0549fe67ad /components/parent/pom.xml | |
parent | 78702c12bd0b6cb8ec0fd621f27fa61c9a017fbe (diff) | |
parent | 439ca0b6baf30f6d68f48e1fa6c8023aab374a5a (diff) |
Merge "Fix classpath issue w/ guava"
Diffstat (limited to 'components/parent/pom.xml')
-rw-r--r-- | components/parent/pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/components/parent/pom.xml b/components/parent/pom.xml index 8ecb2c1a..365515aa 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> |