Rationalize maven dependencies
[sdc.git] / openecomp-be / pom.xml
1 <!--
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
17 <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>
21
22   <name>openecomp-sdc</name>
23   <artifactId>openecomp-sdc</artifactId>
24   <packaging>pom</packaging>
25
26   <url>http://maven.apache.org</url>
27
28   <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>
34
35   <dependencies>
36     <dependency>
37       <groupId>com.github.testng-team</groupId>
38       <artifactId>testng-junit5</artifactId>
39       <version>0.0.1</version>
40       <scope>test</scope>
41     </dependency>
42
43     <dependency>
44       <groupId>com.google.code.bean-matchers</groupId>
45       <artifactId>bean-matchers</artifactId>
46       <version>${bean-matchers.version}</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.onap.logging-analytics</groupId>
51       <artifactId>logging-slf4j</artifactId>
52       <version>${onap.logging.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>org.togglz</groupId>
56       <artifactId>togglz-core</artifactId>
57       <version>${togglz.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.togglz</groupId>
61       <artifactId>togglz-testing</artifactId>
62       <version>${togglz.version}</version>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.junit.jupiter</groupId>
67       <artifactId>junit-jupiter</artifactId>
68       <version>${junitJupiter.version}</version>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.mockito</groupId>
73       <artifactId>mockito-junit-jupiter</artifactId>
74       <version>${mockitoJupiter.version}</version>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78
79   <build>
80     <plugins>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-jar-plugin</artifactId>
84         <version>${mvn.jar.version}</version>
85       </plugin>
86     </plugins>
87   </build>
88
89   <modules>
90     <module>/api</module>
91     <module>/lib</module>
92     <module>/tools/swagger-ui</module>
93     <module>/tools/zusammen-tools</module>
94     <module>/backend</module>
95   </modules>
96
97   <profiles>
98     <profile>
99       <id>docker</id>
100       <activation>
101         <activeByDefault>false</activeByDefault>
102       </activation>
103       <modules>
104         <module>/dist</module>
105       </modules>
106     </profile>
107   </profiles>
108 </project>
109