Adding customer and serive subscription handling
[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     </dependencies>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.springframework.boot</groupId>
31                 <artifactId>spring-boot-maven-plugin</artifactId>
32                 <configuration>
33                     <mainClass>org.onap.so.aai.simulator.AaiSimulatorApplication</mainClass>
34                 </configuration>
35                 <executions>
36                     <execution>
37                         <goals>
38                             <goal>repackage</goal>
39                         </goals>
40                     </execution>
41                 </executions>
42             </plugin>
43             <plugin>
44                 <groupId>org.springframework.boot</groupId>
45                 <artifactId>spring-boot-maven-plugin</artifactId>
46             </plugin>
47         </plugins>
48     </build>
49
50 </project>