Updating image version and fixing tests
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / 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     <parent>
5         <groupId>org.onap.so.simulators</groupId>
6         <artifactId>so-simulators</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>aai-simulator</artifactId>
10     <properties>
11         <version.aai.schema>1.8.1</version.aai.schema>
12     </properties>
13     <dependencies>
14         <dependency>
15             <groupId>${project.parent.groupId}</groupId>
16             <artifactId>common</artifactId>
17             <version>${project.version}</version>
18         </dependency>
19         <dependency>
20             <groupId>org.onap.aai.schema-service</groupId>
21             <artifactId>aai-schema</artifactId>
22             <version>${version.aai.schema}</version>
23         </dependency>
24         <dependency>
25             <groupId>com.fasterxml.jackson.module</groupId>
26             <artifactId>jackson-module-jaxb-annotations</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.springframework.boot</groupId>
30             <artifactId>spring-boot-starter-security</artifactId>
31             <exclusions>
32                 <exclusion>
33                     <groupId>org.springframework.boot</groupId>
34                     <artifactId>spring-boot-starter-tomcat</artifactId>
35                 </exclusion>
36             </exclusions>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.httpcomponents</groupId>
40             <artifactId>httpclient</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>javax.xml.bind</groupId>
44             <artifactId>jaxb-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.sun.xml.bind</groupId>
48             <artifactId>jaxb-core</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.sun.xml.bind</groupId>
52             <artifactId>jaxb-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>javax.activation</groupId>
56             <artifactId>activation</artifactId>
57         </dependency>
58     </dependencies>
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.springframework.boot</groupId>
63                 <artifactId>spring-boot-maven-plugin</artifactId>
64                 <configuration>
65                     <mainClass>org.onap.so.aaisimulator.AaiSimulatorApplication</mainClass>
66                 </configuration>
67                 <executions>
68                     <execution>
69                         <goals>
70                             <goal>repackage</goal>
71                         </goals>
72                     </execution>
73                 </executions>
74             </plugin>
75             <plugin>
76                 <groupId>org.springframework.boot</groupId>
77                 <artifactId>spring-boot-maven-plugin</artifactId>
78             </plugin>
79         </plugins>
80     </build>
81 </project>