Merge "execution timeout not respected..."
[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 <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">
18     <modelVersion>4.0.0</modelVersion>
19
20     <parent>
21         <groupId>org.onap.ccsdk.cds</groupId>
22         <artifactId>ms</artifactId>
23         <version>0.7.1-SNAPSHOT</version>
24         <relativePath>..</relativePath>
25     </parent>
26
27     <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
28     <artifactId>error-catalog</artifactId>
29     <packaging>pom</packaging>
30
31     <name>Error Catalog Lib</name>
32     <description>Error Catalog Lib for ONAP Components</description>
33
34     <modules>
35         <module>application</module>
36         <module>core</module>
37         <module>services</module>
38     </modules>
39
40     <dependencyManagement>
41         <dependencies>
42             <dependency>
43                 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
44                 <artifactId>error-catalog-core</artifactId>
45                 <version>${project.version}</version>
46             </dependency>
47             <dependency>
48                 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
49                 <artifactId>error-catalog-services</artifactId>
50                 <version>${project.version}</version>
51             </dependency>
52         </dependencies>
53     </dependencyManagement>
54     <dependencies>
55         <!-- Kotlin Dependencies -->
56         <dependency>
57             <groupId>org.jetbrains.kotlin</groupId>
58             <artifactId>kotlin-stdlib</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.jetbrains.kotlin</groupId>
62             <artifactId>kotlin-stdlib-common</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.jetbrains.kotlin</groupId>
66             <artifactId>kotlin-script-util</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.jetbrains.kotlin</groupId>
70             <artifactId>kotlin-stdlib-jdk8</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.jetbrains.kotlinx</groupId>
74             <artifactId>kotlinx-coroutines-core</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.jetbrains.kotlinx</groupId>
78             <artifactId>kotlinx-coroutines-reactor</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>com.fasterxml.jackson.module</groupId>
82             <artifactId>jackson-module-kotlin</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.jetbrains.kotlin</groupId>
86             <artifactId>kotlin-compiler-embeddable</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.jetbrains.kotlin</groupId>
90             <artifactId>kotlin-scripting-jvm-host</artifactId>
91             <!--Use kotlin-compiler-embeddable as koltin-compiler wrap-->
92             <!--guava dependency creating classpath issues at runtime-->
93             <exclusions>
94                 <exclusion>
95                     <groupId>org.jetbrains.kotlin</groupId>
96                     <artifactId>kotlin-compiler</artifactId>
97                 </exclusion>
98             </exclusions>
99         </dependency>
100         <dependency>
101             <groupId>org.springframework.boot</groupId>
102             <artifactId>spring-boot-starter-webflux</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>javax.persistence</groupId>
106             <artifactId>javax.persistence-api</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.springframework.boot</groupId>
110             <artifactId>spring-boot-starter-data-jpa</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.springframework.boot</groupId>
114             <artifactId>spring-boot-starter-test</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>io.projectreactor</groupId>
119             <artifactId>reactor-test</artifactId>
120             <scope>test</scope>
121         </dependency>
122     </dependencies>
123
124     <build>
125         <plugins>
126             <plugin>
127                 <groupId>org.jetbrains.kotlin</groupId>
128                 <artifactId>kotlin-maven-plugin</artifactId>
129                 <version>${kotlin.maven.version}</version>
130                 <executions>
131                     <execution>
132                         <id>compile</id>
133                         <goals>
134                             <goal>compile</goal>
135                         </goals>
136                         <configuration>
137                             <sourceDirs>
138                                 <sourceDir>src/main/kotlin</sourceDir>
139                             </sourceDirs>
140                         </configuration>
141                     </execution>
142                     <execution>
143                         <id>test-compile</id>
144                         <goals>
145                             <goal>test-compile</goal>
146                         </goals>
147                         <configuration>
148                             <sourceDirs>
149                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
150                             </sourceDirs>
151                         </configuration>
152                     </execution>
153                 </executions>
154             </plugin>
155         </plugins>
156     </build>
157 </project>