Update versions for London
[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>cds-ms</artifactId>
24         <version>1.5.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>MS Error Catalog (Root)</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     <properties>
42         <error-catalog.version>${project.version}</error-catalog.version>
43     </properties>
44
45     <dependencyManagement>
46         <dependencies>
47             <dependency>
48                 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
49                 <artifactId>error-catalog-core</artifactId>
50                 <version>${error-catalog.version}</version>
51             </dependency>
52             <dependency>
53                 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
54                 <artifactId>error-catalog-services</artifactId>
55                 <version>${error-catalog.version}</version>
56             </dependency>
57         </dependencies>
58     </dependencyManagement>
59     <dependencies>
60         <!-- Kotlin Dependencies -->
61         <dependency>
62             <groupId>org.jetbrains.kotlin</groupId>
63             <artifactId>kotlin-stdlib</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.jetbrains.kotlin</groupId>
67             <artifactId>kotlin-reflect</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.jetbrains.kotlin</groupId>
71             <artifactId>kotlin-stdlib-common</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.jetbrains.kotlin</groupId>
75             <artifactId>kotlin-compiler-embeddable</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-test</artifactId>
80             <scope>test</scope>
81         </dependency>
82     </dependencies>
83
84     <build>
85         <plugins>
86             <plugin>
87                 <groupId>org.jetbrains.kotlin</groupId>
88                 <artifactId>kotlin-maven-plugin</artifactId>
89                 <executions>
90                     <execution>
91                         <id>compile</id>
92                         <goals>
93                             <goal>compile</goal>
94                         </goals>
95                         <configuration>
96                             <sourceDirs>
97                                 <sourceDir>src/main/kotlin</sourceDir>
98                             </sourceDirs>
99                         </configuration>
100                     </execution>
101                     <execution>
102                         <id>test-compile</id>
103                         <goals>
104                             <goal>test-compile</goal>
105                         </goals>
106                         <configuration>
107                             <sourceDirs>
108                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
109                             </sourceDirs>
110                         </configuration>
111                     </execution>
112                 </executions>
113             </plugin>
114         </plugins>
115     </build>
116 </project>