diff options
author | 2020-04-08 19:17:10 +0000 | |
---|---|---|
committer | 2020-04-08 19:17:10 +0000 | |
commit | 0466d6807e71c7c443f60e340445927194c0ee39 (patch) | |
tree | 425c0da963ba71d48f98171e9acffee748d79bb1 /ms/error-catalog/services/pom.xml | |
parent | 2973e9755cb2e7424eacaeb9e277cbd613605ec1 (diff) | |
parent | 4384dfcb4c2147f9c2ae0142a4f01dd94c347c50 (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.xml | 34 |
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> |