diff options
author | Dan Timoney <dtimoney@att.com> | 2020-04-08 15:13:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-04-08 15:13:53 +0000 |
commit | b3be6e54e99ba120624f9195acd5fb0c39a0f2b4 (patch) | |
tree | 63b32742168c7535a35c65ef5059bf3d7fb4cc49 /ms/error-catalog/services/pom.xml | |
parent | 1cc6f92fa91b1cc546a8c630602bc48ad7f89e76 (diff) | |
parent | 20dcdbc1384a1173d7e63dd666d530908c845a1e (diff) |
Merge "Refactoring BP Code with ErrorCatalog"
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 3be5f9f9e..c5e6cb216 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> |