blob: 8a5f9908118a28340ea01bd7f423d16c0c9d586a [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 Sonsino610ff242019-07-28 15:44:36 +030030 <version>1.5.1-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>
talioce889ad2017-11-12 16:12:35 +020043 <groupId>org.togglz</groupId>
44 <artifactId>togglz-core</artifactId>
45 <version>${togglz.version}</version>
46 </dependency>
talioce889ad2017-11-12 16:12:35 +020047 <dependency>
48 <groupId>org.togglz</groupId>
talioce889ad2017-11-12 16:12:35 +020049 <artifactId>togglz-testing</artifactId>
50 <version>${togglz.version}</version>
51 <scope>test</scope>
52 </dependency>
AviZi280f8012017-06-09 02:39:56 +030053 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020054
55 <build>
56 <plugins>
Michael Landof5f13c42017-02-19 12:35:04 +020057 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-compiler-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030060 <version>${mvn.compiler.version}</version>
Gautam Shah3de22e12018-04-21 16:18:37 +053061 </plugin>
62 <plugin>
Gautam Shahb145c082018-05-27 13:32:07 +053063 <groupId>org.apache.maven.plugins</groupId>
Gautam Shahb145c082018-05-27 13:32:07 +053064 <artifactId>maven-jar-plugin</artifactId>
65 <version>${mvn.jar.version}</version>
AviZi280f8012017-06-09 02:39:56 +030066 </plugin>
Michael Landof5f13c42017-02-19 12:35:04 +020067 </plugins>
68 </build>
69
Gautam Shah3de22e12018-04-21 16:18:37 +053070 <modules>
71 <module>/api</module>
72 <module>/lib</module>
73 <module>/tools/swagger-ui</module>
74 <module>/tools/zusammen-tools</module>
75 <module>/backend</module>
76 </modules>
Avi Zivc175a0d2018-03-15 13:21:44 +020077
vempoa706d712018-11-06 18:41:14 +020078 <profiles>
Avi Zivc175a0d2018-03-15 13:21:44 +020079 <profile>
80 <id>docker</id>
81 <activation>
82 <activeByDefault>false</activeByDefault>
83 </activation>
Avi Zivc175a0d2018-03-15 13:21:44 +020084 <modules>
85 <module>/dist</module>
86 </modules>
87 </profile>
88 </profiles>
Michael Landof5f13c42017-02-19 12:35:04 +020089</project>
90