Upgrade Junit to version 5.6
[sdc.git] / common-be / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <groupId>org.openecomp.sdc.be</groupId>
6   <artifactId>common-be</artifactId>
7
8   <parent>
9     <groupId>org.openecomp.sdc</groupId>
10     <artifactId>sdc-main</artifactId>
11     <version>1.7.0-SNAPSHOT</version>
12   </parent>
13
14   <dependencies>
15     <!-- Common of SD&C -->
16     <dependency>
17       <groupId>org.openecomp.sdc</groupId>
18       <artifactId>common-app-api</artifactId>
19       <version>${project.version}</version>
20       <scope>compile</scope>
21     </dependency>
22
23     <dependency>
24       <groupId>org.apache.commons</groupId>
25       <artifactId>commons-lang3</artifactId>
26       <version>${lang3.version}</version>
27       <scope>provided</scope>
28     </dependency>
29
30     <dependency>
31       <groupId>ch.qos.logback</groupId>
32       <artifactId>logback-classic</artifactId>
33       <version>${logback.version}</version>
34       <scope>provided</scope>
35     </dependency>
36
37     <dependency>
38       <groupId>com.google.guava</groupId>
39       <artifactId>guava</artifactId>
40       <version>${guava.version}</version>
41       <scope>provided</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.functionaljava</groupId>
45       <artifactId>functionaljava</artifactId>
46       <version>${functionaljava.version}</version>
47       <scope>provided</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>com.fasterxml.jackson.core</groupId>
52       <artifactId>jackson-databind</artifactId>
53       <version>${jackson.version}</version>
54       <scope>provided</scope>
55     </dependency>
56
57     <dependency>
58       <groupId>org.hamcrest</groupId>
59       <artifactId>hamcrest</artifactId>
60       <version>${hamcrest.version}</version>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.hamcrest</groupId>
65       <artifactId>hamcrest-library</artifactId>
66       <version>${hamcrest.version}</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <version>${junit.version}</version>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.junit.jupiter</groupId>
77       <artifactId>junit-jupiter</artifactId>
78       <version>${junitJupiter.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.mockito</groupId>
83       <artifactId>mockito-junit-jupiter</artifactId>
84       <version>${mockitoJupiter.version}</version>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.mockito</groupId>
89       <artifactId>mockito-core</artifactId>
90       <version>${mockito.version}</version>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.onap.sdc.common</groupId>
95       <artifactId>onap-tosca-datatype</artifactId>
96       <version>${tosca.datatype.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.onap.sdc.sdc-tosca</groupId>
100       <artifactId>sdc-tosca</artifactId>
101       <version>${sdc-tosca-parser.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>org.projectlombok</groupId>
105       <artifactId>lombok</artifactId>
106       <version>${lombok.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>com.google.code.bean-matchers</groupId>
110       <artifactId>bean-matchers</artifactId>
111       <version>${bean-matchers.version}</version>
112       <scope>test</scope>
113     </dependency>
114
115         <!-- Togglz core module (mandatory) -->
116         <dependency>
117             <groupId>org.togglz</groupId>
118             <artifactId>togglz-core</artifactId>
119             <version>${togglz.version}</version>
120         </dependency>
121
122         <!-- Togglz for Servlet environments (mandatory for webapps) -->
123         <dependency>
124             <groupId>org.togglz</groupId>
125             <artifactId>togglz-servlet</artifactId>
126             <version>${togglz.version}</version>
127         </dependency>
128
129         <!-- Togglz Admin Console -->
130         <dependency>
131             <groupId>org.togglz</groupId>
132             <artifactId>togglz-console</artifactId>
133             <version>${togglz.version}</version>
134         </dependency>
135
136         <!-- Togglz for testing -->
137         <dependency>
138             <groupId>org.togglz</groupId>
139             <artifactId>togglz-testing</artifactId>
140             <version>${togglz.version}</version>
141             <scope>test</scope>
142         </dependency>
143
144   </dependencies>
145   <build>
146     <plugins>
147       <plugin>
148         <artifactId>maven-jar-plugin</artifactId>
149         <version>${maven-jar-plugin.version}</version>
150         <executions>
151           <execution>
152             <id>default-jar</id>
153             <phase>package</phase>
154             <goals>
155               <goal>jar</goal>
156               <goal>test-jar</goal>
157             </goals>
158           </execution>
159         </executions>
160       </plugin>
161       <plugin>
162         <groupId>com.github.sylvainlaurent.maven</groupId>
163         <artifactId>yaml-json-validator-maven-plugin</artifactId>
164         <executions>
165           <execution>
166             <id>validate</id>
167             <phase>validate</phase>
168             <goals>
169               <goal>validate</goal>
170             </goals>
171             <configuration>
172               <validationSets>
173                 <validationSet>
174                   <includes>
175                     <include>src/main/resources/**/*.y*ml</include>
176                     <include>src/test/resources/**/*.y*ml</include>
177                   </includes>
178                 </validationSet>
179                 <validationSet>
180                   <includes>
181                     <include>src/main/resources/**/*.json</include>
182                     <include>src/test/resources/**/*.json</include>
183                   </includes>
184                 </validationSet>
185               </validationSets>
186             </configuration>
187           </execution>
188         </executions>
189       </plugin>
190     </plugins>
191   </build>
192
193 </project>