blob: 73528fa98d843da1122e5535518fef557ba26a1a [file] [log] [blame]
Brinda Santh91b3a642020-03-06 13:04:37 -05001<?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 -->
Dan Timoney8edec222020-04-07 11:51:20 -040017
Brinda Santh91b3a642020-03-06 13:04:37 -050018<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>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040023 <artifactId>cds-ms</artifactId>
Dan Timoneyc243c622021-08-03 11:47:50 -040024 <version>1.1.6-SNAPSHOT</version>
Brinda Santh91b3a642020-03-06 13:04:37 -050025 <relativePath>..</relativePath>
26 </parent>
27
Dan Timoneyf946eae2020-03-17 08:34:04 -040028 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
Brinda Santh91b3a642020-03-06 13:04:37 -050029 <artifactId>error-catalog</artifactId>
30 <packaging>pom</packaging>
31
Singal, Kapil (ks220y)58447242020-12-15 19:02:17 -050032 <name>MS Error Catalog (Root)</name>
Brinda Santh91b3a642020-03-06 13:04:37 -050033 <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
Brinda Santh20dcdbc2020-03-06 13:04:37 -050041 <properties>
42 <error-catalog.version>${project.version}</error-catalog.version>
43 </properties>
44
Brinda Santh91b3a642020-03-06 13:04:37 -050045 <dependencyManagement>
46 <dependencies>
47 <dependency>
Dan Timoneyf946eae2020-03-17 08:34:04 -040048 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
Brinda Santh91b3a642020-03-06 13:04:37 -050049 <artifactId>error-catalog-core</artifactId>
Brinda Santh20dcdbc2020-03-06 13:04:37 -050050 <version>${error-catalog.version}</version>
Brinda Santh91b3a642020-03-06 13:04:37 -050051 </dependency>
52 <dependency>
Dan Timoneyf946eae2020-03-17 08:34:04 -040053 <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
Brinda Santh91b3a642020-03-06 13:04:37 -050054 <artifactId>error-catalog-services</artifactId>
Brinda Santh20dcdbc2020-03-06 13:04:37 -050055 <version>${error-catalog.version}</version>
Brinda Santh91b3a642020-03-06 13:04:37 -050056 </dependency>
57 </dependencies>
58 </dependencyManagement>
59 <dependencies>
60 <!-- Kotlin Dependencies -->
61 <dependency>
62 <groupId>org.jetbrains.kotlin</groupId>
Oleg Mitsura8c231292020-08-20 09:47:26 -040063 <artifactId>kotlin-stdlib</artifactId>
Brinda Santh20dcdbc2020-03-06 13:04:37 -050064 </dependency>
65 <dependency>
66 <groupId>org.jetbrains.kotlin</groupId>
67 <artifactId>kotlin-reflect</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.jetbrains.kotlin</groupId>
Brinda Santh91b3a642020-03-06 13:04:37 -050071 <artifactId>kotlin-stdlib-common</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.jetbrains.kotlin</groupId>
Brinda Santh91b3a642020-03-06 13:04:37 -050075 <artifactId>kotlin-compiler-embeddable</artifactId>
76 </dependency>
77 <dependency>
Brinda Santh91b3a642020-03-06 13:04:37 -050078 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-test</artifactId>
80 <scope>test</scope>
81 </dependency>
Brinda Santh91b3a642020-03-06 13:04:37 -050082 </dependencies>
83
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.jetbrains.kotlin</groupId>
88 <artifactId>kotlin-maven-plugin</artifactId>
Brinda Santh91b3a642020-03-06 13:04:37 -050089 <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>