Roll to next Guilin snapshot
[ccsdk/cds.git] / ms / error-catalog / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2018-2019 AT&T Intellectual Property.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20
21     <parent>
22         <groupId>org.onap.ccsdk.cds</groupId>
23         <artifactId>ms</artifactId>
24         <version>1.0.0-SNAPSHOT</version>
25         <relativePath>..</relativePath>
26     </parent>
27
28     <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
29     <artifactId>error-catalog</artifactId>
30     <packaging>pom</packaging>
31
32     <name>Error Catalog Lib</name>
33     <description>Error Catalog Lib for ONAP Components</description>
34
35     <modules>
36         <module>application</module>
37         <module>core</module>
38         <module>services</module>
39     </modules>
40
41     <dependencyManagement>
42         <dependencies>
43             <dependency>
44                 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
45                 <artifactId>error-catalog-core</artifactId>
46                 <version>${project.version}</version>
47             </dependency>
48             <dependency>
49                 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
50                 <artifactId>error-catalog-services</artifactId>
51                 <version>${project.version}</version>
52             </dependency>
53         </dependencies>
54     </dependencyManagement>
55     <dependencies>
56         <!-- Kotlin Dependencies -->
57         <dependency>
58             <groupId>org.jetbrains.kotlin</groupId>
59             <artifactId>kotlin-stdlib</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.jetbrains.kotlin</groupId>
63             <artifactId>kotlin-stdlib-common</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.jetbrains.kotlin</groupId>
67             <artifactId>kotlin-script-util</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.jetbrains.kotlin</groupId>
71             <artifactId>kotlin-stdlib-jdk8</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.jetbrains.kotlinx</groupId>
75             <artifactId>kotlinx-coroutines-core</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.jetbrains.kotlinx</groupId>
79             <artifactId>kotlinx-coroutines-reactor</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>com.fasterxml.jackson.module</groupId>
83             <artifactId>jackson-module-kotlin</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.jetbrains.kotlin</groupId>
87             <artifactId>kotlin-compiler-embeddable</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.jetbrains.kotlin</groupId>
91             <artifactId>kotlin-scripting-jvm-host</artifactId>
92             <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
93             <!--guava dependency creating classpath issues at runtime-->
94             <exclusions>
95                 <exclusion>
96                     <groupId>org.jetbrains.kotlin</groupId>
97                     <artifactId>kotlin-compiler</artifactId>
98                 </exclusion>
99             </exclusions>
100         </dependency>
101         <dependency>
102             <groupId>org.springframework.boot</groupId>
103             <artifactId>spring-boot-starter-webflux</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>javax.persistence</groupId>
107             <artifactId>javax.persistence-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.springframework.boot</groupId>
111             <artifactId>spring-boot-starter-data-jpa</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.springframework.boot</groupId>
115             <artifactId>spring-boot-starter-test</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>io.projectreactor</groupId>
120             <artifactId>reactor-test</artifactId>
121             <scope>test</scope>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <groupId>org.jetbrains.kotlin</groupId>
129                 <artifactId>kotlin-maven-plugin</artifactId>
130                 <version>${kotlin.maven.version}</version>
131                 <executions>
132                     <execution>
133                         <id>compile</id>
134                         <goals>
135                             <goal>compile</goal>
136                         </goals>
137                         <configuration>
138                             <sourceDirs>
139                                 <sourceDir>src/main/kotlin</sourceDir>
140                             </sourceDirs>
141                         </configuration>
142                     </execution>
143                     <execution>
144                         <id>test-compile</id>
145                         <goals>
146                             <goal>test-compile</goal>
147                         </goals>
148                         <configuration>
149                             <sourceDirs>
150                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
151                             </sourceDirs>
152                         </configuration>
153                     </execution>
154                 </executions>
155             </plugin>
156         </plugins>
157     </build>
158 </project>