summaryrefslogtreecommitdiffstats
path: root/ms/error-catalog/services/pom.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-04-08 19:17:10 +0000
committerGerrit Code Review <gerrit@onap.org>2020-04-08 19:17:10 +0000
commit0466d6807e71c7c443f60e340445927194c0ee39 (patch)
tree425c0da963ba71d48f98171e9acffee748d79bb1 /ms/error-catalog/services/pom.xml
parent2973e9755cb2e7424eacaeb9e277cbd613605ec1 (diff)
parent4384dfcb4c2147f9c2ae0142a4f01dd94c347c50 (diff)
Merge "Refactoring BP Code with ErrorCatalog" into frankfurt
Diffstat (limited to 'ms/error-catalog/services/pom.xml')
-rw-r--r--ms/error-catalog/services/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/ms/error-catalog/services/pom.xml b/ms/error-catalog/services/pom.xml
index 71b819fcf..70ebf1b37 100644
--- a/ms/error-catalog/services/pom.xml
+++ b/ms/error-catalog/services/pom.xml
@@ -38,5 +38,39 @@
<groupId>org.onap.ccsdk.cds.error.catalog</groupId>
<artifactId>error-catalog-core</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-jpa</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>
+ <dependency>
+ <groupId>org.jetbrains.kotlinx</groupId>
+ <artifactId>kotlinx-coroutines-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jetbrains.kotlinx</groupId>
+ <artifactId>kotlinx-coroutines-reactor</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jetbrains.kotlin</groupId>
+ <artifactId>kotlin-script-util</artifactId>
+ </dependency>
+ <!-- Kotlin Dependencies -->
+ <dependency>
+ <groupId>io.projectreactor</groupId>
+ <artifactId>reactor-test</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>