3dd822289620251ca59e5743ef4f29ddfc5fd061
[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
11     <properties>
12         <version.aai.schema>1.0.0</version.aai.schema>
13     </properties>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.onap.aai.schema-service</groupId>
18             <artifactId>aai-schema</artifactId>
19             <version>${version.aai.schema}</version>
20         </dependency>
21         <dependency>
22             <groupId>com.fasterxml.jackson.module</groupId>
23             <artifactId>jackson-module-jaxb-annotations</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.springframework.boot</groupId>
27             <artifactId>spring-boot-starter-security</artifactId>
28             <exclusions>
29                 <exclusion>
30                     <groupId>org.springframework.boot</groupId>
31                     <artifactId>spring-boot-starter-tomcat</artifactId>
32                 </exclusion>
33             </exclusions>
34         </dependency>
35         <dependency>
36             <groupId>org.apache.httpcomponents</groupId>
37             <artifactId>httpclient</artifactId>
38             <scope>test</scope>
39         </dependency>
40     </dependencies>
41
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.springframework.boot</groupId>
46                 <artifactId>spring-boot-maven-plugin</artifactId>
47                 <configuration>
48                     <mainClass>org.onap.so.aai.simulator.AaiSimulatorApplication</mainClass>
49                 </configuration>
50                 <executions>
51                     <execution>
52                         <goals>
53                             <goal>repackage</goal>
54                         </goals>
55                     </execution>
56                 </executions>
57             </plugin>
58             <plugin>
59                 <groupId>org.springframework.boot</groupId>
60                 <artifactId>spring-boot-maven-plugin</artifactId>
61             </plugin>
62         </plugins>
63     </build>
64
65 </project>