Update version to 1.8.2
[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.8.2-SNAPSHOT</version>
32     <relativePath>../onboarding/pom.xml</relativePath>
33   </parent>
34
35   <dependencies>
36     <dependency>
37       <groupId>org.junit.jupiter</groupId>
38       <artifactId>junit-jupiter</artifactId>
39       <version>${junitJupiter.version}</version>
40       <scope>test</scope>
41     </dependency>
42
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-junit-jupiter</artifactId>
46       <version>${mockitoJupiter.version}</version>
47       <scope>test</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>com.github.testng-team</groupId>
52       <artifactId>testng-junit5</artifactId>
53       <version>0.0.1</version>
54       <scope>test</scope>
55       <exclusions>
56         <exclusion>
57           <groupId>org.junit.platform</groupId>
58           <artifactId>junit-platform-engine</artifactId>
59         </exclusion>
60       </exclusions>
61     </dependency>
62
63     <dependency>
64       <groupId>com.google.code.bean-matchers</groupId>
65       <artifactId>bean-matchers</artifactId>
66       <version>${bean-matchers.version}</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.onap.logging-analytics</groupId>
71       <artifactId>logging-slf4j</artifactId>
72       <version>${onap.logging.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.togglz</groupId>
76       <artifactId>togglz-core</artifactId>
77       <version>${togglz.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>org.togglz</groupId>
81       <artifactId>togglz-testing</artifactId>
82       <version>${togglz.version}</version>
83       <scope>test</scope>
84     </dependency>
85   </dependencies>
86
87   <build>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-jar-plugin</artifactId>
92         <version>${mvn.jar.version}</version>
93       </plugin>
94     </plugins>
95   </build>
96
97   <modules>
98     <module>/api</module>
99     <module>/lib</module>
100     <module>/tools/swagger-ui</module>
101     <module>/tools/zusammen-tools</module>
102     <module>/backend</module>
103   </modules>
104
105   <profiles>
106     <profile>
107       <id>docker</id>
108       <activation>
109         <activeByDefault>false</activeByDefault>
110       </activation>
111       <modules>
112         <module>/dist</module>
113       </modules>
114     </profile>
115   </profiles>
116 </project>
117