blob: 9e6a01ca8bbaf63d06a78cf4de1b836b214a6773 [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>
35 <dependency>
talioce889ad2017-11-12 16:12:35 +020036 <groupId>org.togglz</groupId>
37 <artifactId>togglz-core</artifactId>
38 <version>${togglz.version}</version>
39 </dependency>
talioce889ad2017-11-12 16:12:35 +020040 <dependency>
41 <groupId>org.togglz</groupId>
talioce889ad2017-11-12 16:12:35 +020042 <artifactId>togglz-testing</artifactId>
43 <version>${togglz.version}</version>
44 <scope>test</scope>
45 </dependency>
AviZi280f8012017-06-09 02:39:56 +030046 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020047
48 <build>
49 <plugins>
Michael Landof5f13c42017-02-19 12:35:04 +020050 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-compiler-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030053 <version>${mvn.compiler.version}</version>
Gautam Shah3de22e12018-04-21 16:18:37 +053054 </plugin>
55 <plugin>
Gautam Shahb145c082018-05-27 13:32:07 +053056 <groupId>org.apache.maven.plugins</groupId>
Gautam Shahb145c082018-05-27 13:32:07 +053057 <artifactId>maven-jar-plugin</artifactId>
58 <version>${mvn.jar.version}</version>
AviZi280f8012017-06-09 02:39:56 +030059 </plugin>
Michael Landof5f13c42017-02-19 12:35:04 +020060 </plugins>
61 </build>
62
Gautam Shah3de22e12018-04-21 16:18:37 +053063 <modules>
64 <module>/api</module>
65 <module>/lib</module>
66 <module>/tools/swagger-ui</module>
67 <module>/tools/zusammen-tools</module>
68 <module>/backend</module>
69 </modules>
Avi Zivc175a0d2018-03-15 13:21:44 +020070
vempoa706d712018-11-06 18:41:14 +020071 <profiles>
Avi Zivc175a0d2018-03-15 13:21:44 +020072 <profile>
73 <id>docker</id>
74 <activation>
75 <activeByDefault>false</activeByDefault>
76 </activation>
Avi Zivc175a0d2018-03-15 13:21:44 +020077 <modules>
78 <module>/dist</module>
79 </modules>
80 </profile>
81 </profiles>
Michael Landof5f13c42017-02-19 12:35:04 +020082</project>
83