blob: 79bef95f810e13124b188ee857b5e867698be829 [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
Michael Landof5f13c42017-02-19 12:35:04 +020017<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
18 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
AviZi280f8012017-06-09 02:39:56 +030021 <name>openecomp-sdc</name>
Michael Landof5f13c42017-02-19 12:35:04 +020022 <artifactId>openecomp-sdc</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020023 <packaging>pom</packaging>
AviZi280f8012017-06-09 02:39:56 +030024
Michael Landof5f13c42017-02-19 12:35:04 +020025 <url>http://maven.apache.org</url>
26
AviZi280f8012017-06-09 02:39:56 +030027 <parent>
28 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>sdc-onboarding</artifactId>
Ofir Sonsino09d87892020-03-12 20:52:42 +020030 <version>1.7.0-SNAPSHOT</version>
vempodecd2df2018-07-23 19:07:37 +030031 <relativePath>../onboarding/pom.xml</relativePath>
AviZi280f8012017-06-09 02:39:56 +030032 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020033
AviZi280f8012017-06-09 02:39:56 +030034 <dependencies>
Bartosz Gardziejewski7962fe52019-08-20 15:53:19 +020035
36 <dependency>
37 <groupId>com.google.code.bean-matchers</groupId>
38 <artifactId>bean-matchers</artifactId>
39 <version>${bean-matchers.version}</version>
40 <scope>test</scope>
41 </dependency>
AviZi280f8012017-06-09 02:39:56 +030042 <dependency>
Ben David, Elad (eb7504)1e617542019-11-03 17:22:48 +020043 <groupId>org.onap.logging-analytics</groupId>
44 <artifactId>logging-slf4j</artifactId>
45 <version>${onap.logging.version}</version>
46 </dependency>
47 <dependency>
talioce889ad2017-11-12 16:12:35 +020048 <groupId>org.togglz</groupId>
49 <artifactId>togglz-core</artifactId>
50 <version>${togglz.version}</version>
51 </dependency>
talioce889ad2017-11-12 16:12:35 +020052 <dependency>
53 <groupId>org.togglz</groupId>
talioce889ad2017-11-12 16:12:35 +020054 <artifactId>togglz-testing</artifactId>
55 <version>${togglz.version}</version>
56 <scope>test</scope>
57 </dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020058 <dependency>
59 <groupId>org.junit.jupiter</groupId>
60 <artifactId>junit-jupiter</artifactId>
61 <version>${junitJupiter.version}</version>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.mockito</groupId>
66 <artifactId>mockito-junit-jupiter</artifactId>
67 <version>${mockitoJupiter.version}</version>
68 <scope>test</scope>
69 </dependency>
AviZi280f8012017-06-09 02:39:56 +030070 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020071
72 <build>
73 <plugins>
Michael Landof5f13c42017-02-19 12:35:04 +020074 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
Gautam Shahb145c082018-05-27 13:32:07 +053076 <artifactId>maven-jar-plugin</artifactId>
77 <version>${mvn.jar.version}</version>
AviZi280f8012017-06-09 02:39:56 +030078 </plugin>
Michael Landof5f13c42017-02-19 12:35:04 +020079 </plugins>
80 </build>
81
Gautam Shah3de22e12018-04-21 16:18:37 +053082 <modules>
83 <module>/api</module>
84 <module>/lib</module>
85 <module>/tools/swagger-ui</module>
86 <module>/tools/zusammen-tools</module>
87 <module>/backend</module>
88 </modules>
Avi Zivc175a0d2018-03-15 13:21:44 +020089
vempoa706d712018-11-06 18:41:14 +020090 <profiles>
Avi Zivc175a0d2018-03-15 13:21:44 +020091 <profile>
92 <id>docker</id>
93 <activation>
94 <activeByDefault>false</activeByDefault>
95 </activation>
Avi Zivc175a0d2018-03-15 13:21:44 +020096 <modules>
97 <module>/dist</module>
98 </modules>
99 </profile>
100 </profiles>
Michael Landof5f13c42017-02-19 12:35:04 +0200101</project>
102