Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 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 | --> |
Dan Timoney | 8edec22 | 2020-04-07 11:51:20 -0400 | [diff] [blame] | 17 | |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 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> |
Singal, Kapil (ks220y) | 8de37f9 | 2020-09-11 13:58:42 -0400 | [diff] [blame] | 23 | <artifactId>cds-ms</artifactId> |
Dan Timoney | c243c62 | 2021-08-03 11:47:50 -0400 | [diff] [blame^] | 24 | <version>1.1.6-SNAPSHOT</version> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 25 | <relativePath>..</relativePath> |
| 26 | </parent> |
| 27 | |
Dan Timoney | f946eae | 2020-03-17 08:34:04 -0400 | [diff] [blame] | 28 | <groupId>org.onap.ccsdk.cds.error.catalog</groupId> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 29 | <artifactId>error-catalog</artifactId> |
| 30 | <packaging>pom</packaging> |
| 31 | |
Singal, Kapil (ks220y) | 5844724 | 2020-12-15 19:02:17 -0500 | [diff] [blame] | 32 | <name>MS Error Catalog (Root)</name> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 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 | |
Brinda Santh | 20dcdbc | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 41 | <properties> |
| 42 | <error-catalog.version>${project.version}</error-catalog.version> |
| 43 | </properties> |
| 44 | |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 45 | <dependencyManagement> |
| 46 | <dependencies> |
| 47 | <dependency> |
Dan Timoney | f946eae | 2020-03-17 08:34:04 -0400 | [diff] [blame] | 48 | <groupId>org.onap.ccsdk.cds.error.catalog</groupId> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 49 | <artifactId>error-catalog-core</artifactId> |
Brinda Santh | 20dcdbc | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 50 | <version>${error-catalog.version}</version> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 51 | </dependency> |
| 52 | <dependency> |
Dan Timoney | f946eae | 2020-03-17 08:34:04 -0400 | [diff] [blame] | 53 | <groupId>org.onap.ccsdk.cds.error.catalog</groupId> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 54 | <artifactId>error-catalog-services</artifactId> |
Brinda Santh | 20dcdbc | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 55 | <version>${error-catalog.version}</version> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 56 | </dependency> |
| 57 | </dependencies> |
| 58 | </dependencyManagement> |
| 59 | <dependencies> |
| 60 | <!-- Kotlin Dependencies --> |
| 61 | <dependency> |
| 62 | <groupId>org.jetbrains.kotlin</groupId> |
Oleg Mitsura | 8c23129 | 2020-08-20 09:47:26 -0400 | [diff] [blame] | 63 | <artifactId>kotlin-stdlib</artifactId> |
Brinda Santh | 20dcdbc | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 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> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 71 | <artifactId>kotlin-stdlib-common</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.jetbrains.kotlin</groupId> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 75 | <artifactId>kotlin-compiler-embeddable</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 78 | <groupId>org.springframework.boot</groupId> |
| 79 | <artifactId>spring-boot-starter-test</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 82 | </dependencies> |
| 83 | |
| 84 | <build> |
| 85 | <plugins> |
| 86 | <plugin> |
| 87 | <groupId>org.jetbrains.kotlin</groupId> |
| 88 | <artifactId>kotlin-maven-plugin</artifactId> |
Brinda Santh | 91b3a64 | 2020-03-06 13:04:37 -0500 | [diff] [blame] | 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> |