Prepare for Junit5
[sdc.git] / common-app-logging / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6   <modelVersion>4.0.0</modelVersion>
7
8   <artifactId>common-app-logging</artifactId>
9   <parent>
10     <groupId>org.openecomp.sdc</groupId>
11     <artifactId>sdc-main</artifactId>
12     <version>1.7.0-SNAPSHOT</version>
13   </parent>
14
15   <dependencies>
16     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
17     <dependency>
18       <groupId>org.junit.jupiter</groupId>
19       <artifactId>junit-jupiter-engine</artifactId>
20       <version>${junitJupiter.version}</version>
21       <scope>test</scope>
22     </dependency>
23     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
24     <dependency>
25       <groupId>org.junit.vintage</groupId>
26       <artifactId>junit-vintage-engine</artifactId>
27       <version>${junitJupiter.version}</version>
28     </dependency>
29
30     <dependency>
31       <groupId>javax.servlet</groupId>
32       <artifactId>javax.servlet-api</artifactId>
33       <version>${servlet-api.version}</version>
34       <scope>provided</scope>
35     </dependency>
36     <dependency>
37       <groupId>javax.ws.rs</groupId>
38       <artifactId>javax.ws.rs-api</artifactId>
39       <version>${ws.rs.version}</version>
40       <scope>provided</scope>
41     </dependency>
42
43     <dependency>
44       <groupId>org.aspectj</groupId>
45       <artifactId>aspectjrt</artifactId>
46       <version>${aspectjrt.version}</version>
47       <scope>provided</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>org.apache.commons</groupId>
52       <artifactId>commons-lang3</artifactId>
53       <version>${lang3.version}</version>
54       <scope>provided</scope>
55     </dependency>
56
57     <dependency>
58       <groupId>ch.qos.logback</groupId>
59       <artifactId>logback-classic</artifactId>
60       <version>${logback.version}</version>
61       <scope>provided</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67       <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
68       <scope>provided</scope>
69     </dependency>
70
71     <dependency>
72       <groupId>com.google.code.bean-matchers</groupId>
73       <artifactId>bean-matchers</artifactId>
74       <version>${bean-matchers.version}</version>
75       <scope>test</scope>
76     </dependency>
77
78     <dependency>
79       <groupId>commons-validator</groupId>
80       <artifactId>commons-validator</artifactId>
81       <version>1.6</version>
82       <exclusions>
83         <exclusion>
84           <artifactId>commons-collections</artifactId>
85           <groupId>commons-collections</groupId>
86         </exclusion>
87       </exclusions>
88     </dependency>
89
90     <dependency>
91       <artifactId>commons-collections</artifactId>
92       <groupId>commons-collections</groupId>
93       <version>3.2.2</version>
94     </dependency>
95
96     <dependency>
97       <groupId>org.assertj</groupId>
98       <artifactId>assertj-core</artifactId>
99       <version>${assertj.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.onap.logging-analytics</groupId>
104       <artifactId>logging-slf4j</artifactId>
105       <version>${onap.logging.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>org.onap.logging-analytics</groupId>
109       <artifactId>logging-filter-base</artifactId>
110       <version>${onap.logging.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>org.junit.jupiter</groupId>
114       <artifactId>junit-jupiter</artifactId>
115       <version>${junitJupiter.version}</version>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.mockito</groupId>
120       <artifactId>mockito-junit-jupiter</artifactId>
121       <version>${mockitoJupiter.version}</version>
122       <scope>test</scope>
123     </dependency>
124
125     <dependency>
126       <groupId>org.projectlombok</groupId>
127       <artifactId>lombok</artifactId>
128       <version>${lombok.version}</version>
129     </dependency>
130   </dependencies>
131
132 </project>