blob: b9531ac533b93b9e34257fed1e882cda39947a96 [file] [log] [blame]
vempoa706d712018-11-06 18:41:14 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
vasraza36531c2020-04-29 18:39:35 +010017<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xmlns="http://maven.apache.org/POM/4.0.0"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
Michael Landof5f13c42017-02-19 12:35:04 +020021
vasraza36531c2020-04-29 18:39:35 +010022 <name>openecomp-sdc</name>
23 <artifactId>openecomp-sdc</artifactId>
24 <packaging>pom</packaging>
AviZi280f8012017-06-09 02:39:56 +030025
vasraza36531c2020-04-29 18:39:35 +010026 <url>http://maven.apache.org</url>
Michael Landof5f13c42017-02-19 12:35:04 +020027
vasraza36531c2020-04-29 18:39:35 +010028 <parent>
29 <groupId>org.openecomp.sdc</groupId>
30 <artifactId>sdc-onboarding</artifactId>
sebdet15639472020-10-20 10:42:51 +020031 <version>1.7.2</version>
vasraza36531c2020-04-29 18:39:35 +010032 <relativePath>../onboarding/pom.xml</relativePath>
33 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020034
vasraza36531c2020-04-29 18:39:35 +010035 <dependencies>
vasraze3e2db12020-06-11 12:57:25 +010036 <dependency>
vasraz77097d02020-06-28 19:55:01 +010037 <groupId>org.junit.jupiter</groupId>
38 <artifactId>junit-jupiter</artifactId>
39 <version>${junitJupiter.version}</version>
40 <scope>test</scope>
41 </dependency>
42
43 <dependency>
44 <groupId>org.mockito</groupId>
45 <artifactId>mockito-junit-jupiter</artifactId>
46 <version>${mockitoJupiter.version}</version>
47 <scope>test</scope>
48 </dependency>
49
50 <dependency>
51 <groupId>org.testng</groupId>
52 <artifactId>testng</artifactId>
53 <version>${testng.version}</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
vasraze3e2db12020-06-11 12:57:25 +010057 <groupId>com.github.testng-team</groupId>
58 <artifactId>testng-junit5</artifactId>
59 <version>0.0.1</version>
60 <scope>test</scope>
vasraz77097d02020-06-28 19:55:01 +010061 <exclusions>
62 <exclusion>
63 <groupId>org.junit.platform</groupId>
64 <artifactId>junit-platform-engine</artifactId>
65 </exclusion>
66 </exclusions>
vasraze3e2db12020-06-11 12:57:25 +010067 </dependency>
Bartosz Gardziejewski7962fe52019-08-20 15:53:19 +020068
vasraza36531c2020-04-29 18:39:35 +010069 <dependency>
70 <groupId>com.google.code.bean-matchers</groupId>
71 <artifactId>bean-matchers</artifactId>
72 <version>${bean-matchers.version}</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.onap.logging-analytics</groupId>
77 <artifactId>logging-slf4j</artifactId>
78 <version>${onap.logging.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.togglz</groupId>
82 <artifactId>togglz-core</artifactId>
83 <version>${togglz.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.togglz</groupId>
87 <artifactId>togglz-testing</artifactId>
88 <version>${togglz.version}</version>
89 <scope>test</scope>
90 </dependency>
vasraza36531c2020-04-29 18:39:35 +010091 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020092
vasraza36531c2020-04-29 18:39:35 +010093 <build>
94 <plugins>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-jar-plugin</artifactId>
98 <version>${mvn.jar.version}</version>
99 </plugin>
100 </plugins>
101 </build>
Michael Landof5f13c42017-02-19 12:35:04 +0200102
vasraza36531c2020-04-29 18:39:35 +0100103 <modules>
104 <module>/api</module>
105 <module>/lib</module>
106 <module>/tools/swagger-ui</module>
107 <module>/tools/zusammen-tools</module>
108 <module>/backend</module>
109 </modules>
Avi Zivc175a0d2018-03-15 13:21:44 +0200110
vasraza36531c2020-04-29 18:39:35 +0100111 <profiles>
112 <profile>
113 <id>docker</id>
114 <activation>
115 <activeByDefault>false</activeByDefault>
116 </activation>
117 <modules>
118 <module>/dist</module>
119 </modules>
120 </profile>
121 </profiles>
Michael Landof5f13c42017-02-19 12:35:04 +0200122</project>
123