blob: 3522fc13238c409d7fd8defd9b9893d79af5ad62 [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>
Michael Landob5fc68f2018-11-15 13:36:12 +020030 <version>1.4.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>
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>
Avi Gaffa7d6d63c2017-09-10 15:22:07 +030060 <plugin>
61 <groupId>org.jacoco</groupId>
62 <artifactId>jacoco-maven-plugin</artifactId>
Avi Gaffa7d6d63c2017-09-10 15:22:07 +030063 <executions>
64 <execution>
vempo806d0772018-08-08 15:40:46 +030065 <id>default-prepare-agent</id>
Avi Gaffa7d6d63c2017-09-10 15:22:07 +030066 <goals>
67 <goal>prepare-agent</goal>
68 </goals>
69 </execution>
70 <execution>
71 <id>report</id>
72 <phase>prepare-package</phase>
73 <goals>
74 <goal>report</goal>
75 </goals>
76 </execution>
shrikantawachared640f62017-10-05 19:18:38 +053077 <execution>
78 <id>post-unit-test</id>
79 <phase>test</phase>
80 <goals>
81 <goal>report</goal>
82 </goals>
83 <configuration>
84 <!-- Sets the path to the file which contains the execution data. -->
shrikantawachared640f62017-10-05 19:18:38 +053085 <dataFile>target/jacoco.exec</dataFile>
86 <!-- Sets the output directory for the code coverage report. -->
87 <outputDirectory>target/jacoco-ut</outputDirectory>
88 </configuration>
89 </execution>
Avi Gaffa7d6d63c2017-09-10 15:22:07 +030090 </executions>
91 </plugin>
AviZi280f8012017-06-09 02:39:56 +030092
Michael Landof5f13c42017-02-19 12:35:04 +020093 </plugins>
94 </build>
95
Gautam Shah3de22e12018-04-21 16:18:37 +053096 <modules>
97 <module>/api</module>
98 <module>/lib</module>
99 <module>/tools/swagger-ui</module>
100 <module>/tools/zusammen-tools</module>
101 <module>/backend</module>
102 </modules>
Avi Zivc175a0d2018-03-15 13:21:44 +0200103
vempoa706d712018-11-06 18:41:14 +0200104 <profiles>
Avi Zivc175a0d2018-03-15 13:21:44 +0200105 <profile>
106 <id>docker</id>
107 <activation>
108 <activeByDefault>false</activeByDefault>
109 </activation>
Avi Zivc175a0d2018-03-15 13:21:44 +0200110 <modules>
111 <module>/dist</module>
112 </modules>
113 </profile>
114 </profiles>
Michael Landof5f13c42017-02-19 12:35:04 +0200115</project>
116