5ffc62680dd16f4b050637352eb12460163b94c1
[oom/platform/cert-service.git] / certServiceClient / 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     <parent>
6         <artifactId>aaf-certservice</artifactId>
7         <groupId>org.onap.aaf.certservice</groupId>
8         <version>1.0.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>aaf-certservice-client</artifactId>
13     <version>1.0.0-SNAPSHOT</version>
14     <name>aaf-certservice-client</name>
15     <description>AAF Certification Service Api Client</description>
16     <packaging>jar</packaging>
17
18     <build>
19         <plugins>
20             <plugin>
21                 <groupId>org.apache.maven.plugins</groupId>
22                 <artifactId>maven-surefire-plugin</artifactId>
23             </plugin>
24         </plugins>
25     </build>
26
27     <dependencies>
28         <dependency>
29             <groupId>org.mockito</groupId>
30             <artifactId>mockito-core</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.mockito</groupId>
34             <artifactId>mockito-junit-jupiter</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.slf4j</groupId>
38             <artifactId>slf4j-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.junit.jupiter</groupId>
42             <artifactId>junit-jupiter-engine</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.junit.jupiter</groupId>
46             <artifactId>junit-jupiter-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.assertj</groupId>
50             <artifactId>assertj-core</artifactId>
51         </dependency>
52     </dependencies>
53
54 </project>