blob: e2bb0bc8182ced16da850e1ce1e0aa6b00401e53 [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>
31 <version>1.7.0-SNAPSHOT</version>
32 <relativePath>../onboarding/pom.xml</relativePath>
33 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020034
vasraza36531c2020-04-29 18:39:35 +010035 <dependencies>
36 <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
37 <dependency>
38 <groupId>org.junit.jupiter</groupId>
39 <artifactId>junit-jupiter-engine</artifactId>
40 <version>${junitJupiter.version}</version>
41 <scope>test</scope>
42 </dependency>
43 <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API -->
44 <dependency>
45 <groupId>org.junit.vintage</groupId>
46 <artifactId>junit-vintage-engine</artifactId>
47 <version>${junitJupiter.version}</version>
vasraza1bd2352020-05-06 23:57:53 +010048 <scope>test</scope>
vasraza36531c2020-04-29 18:39:35 +010049 </dependency>
Bartosz Gardziejewski7962fe52019-08-20 15:53:19 +020050
vasraza36531c2020-04-29 18:39:35 +010051 <dependency>
52 <groupId>com.google.code.bean-matchers</groupId>
53 <artifactId>bean-matchers</artifactId>
54 <version>${bean-matchers.version}</version>
55 <scope>test</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.onap.logging-analytics</groupId>
59 <artifactId>logging-slf4j</artifactId>
60 <version>${onap.logging.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.togglz</groupId>
64 <artifactId>togglz-core</artifactId>
65 <version>${togglz.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.togglz</groupId>
69 <artifactId>togglz-testing</artifactId>
70 <version>${togglz.version}</version>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.junit.jupiter</groupId>
75 <artifactId>junit-jupiter</artifactId>
76 <version>${junitJupiter.version}</version>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.mockito</groupId>
81 <artifactId>mockito-junit-jupiter</artifactId>
82 <version>${mockitoJupiter.version}</version>
83 <scope>test</scope>
84 </dependency>
85 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020086
vasraza36531c2020-04-29 18:39:35 +010087 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-jar-plugin</artifactId>
92 <version>${mvn.jar.version}</version>
93 </plugin>
94 </plugins>
95 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020096
vasraza36531c2020-04-29 18:39:35 +010097 <modules>
98 <module>/api</module>
99 <module>/lib</module>
100 <module>/tools/swagger-ui</module>
101 <module>/tools/zusammen-tools</module>
102 <module>/backend</module>
103 </modules>
Avi Zivc175a0d2018-03-15 13:21:44 +0200104
vasraza36531c2020-04-29 18:39:35 +0100105 <profiles>
106 <profile>
107 <id>docker</id>
108 <activation>
109 <activeByDefault>false</activeByDefault>
110 </activation>
111 <modules>
112 <module>/dist</module>
113 </modules>
114 </profile>
115 </profiles>
Michael Landof5f13c42017-02-19 12:35:04 +0200116</project>
117