20c2b316cf8011b65d76dce3976de135ac114b56
[so.git] / so-simulator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <parent>
6     <groupId>org.onap.so</groupId>
7     <artifactId>so</artifactId>
8     <version>1.12.1-SNAPSHOT</version>
9   </parent>
10   <modelVersion>4.0.0</modelVersion>
11   <artifactId>so-simulator</artifactId>
12   <groupId>org.onap.so.simulator</groupId>
13   <name>SO REST Simulator</name>
14   <packaging>jar</packaging>
15
16   <properties>
17     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19     <citrus.simulator.version>1.1.0</citrus.simulator.version>
20     <spring.boot.version>2.0.9.RELEASE</spring.boot.version>
21   </properties>
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.springframework.boot</groupId>
26         <artifactId>spring-boot-dependencies</artifactId>
27         <version>${spring.boot.version}</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33   <dependencies>
34     <dependency>
35       <groupId>org.springframework.boot</groupId>
36       <artifactId>spring-boot-starter-web</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.springframework.boot</groupId>
40       <artifactId>spring-boot-starter</artifactId>
41     </dependency>
42     <!-- Citrus Simulator -->
43     <dependency>
44       <groupId>com.consol.citrus</groupId>
45       <artifactId>citrus-simulator-starter</artifactId>
46       <version>${citrus.simulator.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>com.consol.citrus</groupId>
50       <artifactId>citrus-simulator-ui</artifactId>
51       <version>${citrus.simulator.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.onap.so</groupId>
55       <artifactId>aai-client</artifactId>
56       <version>${project.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.glassfish.jersey.core</groupId>
60       <artifactId>jersey-client</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.onap.logging-analytics</groupId>
64       <artifactId>logging-slf4j</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>com.consol.citrus</groupId>
68       <artifactId>citrus-ws</artifactId>
69       <version>2.7.8</version>
70     </dependency>
71   </dependencies>
72
73   <build>
74     <plugins>
75       <plugin>
76         <artifactId>maven-compiler-plugin</artifactId>
77         <configuration>
78           <encoding>${project.build.sourceEncoding}</encoding>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.springframework.boot</groupId>
83         <artifactId>spring-boot-maven-plugin</artifactId>
84         <version>${springboot.version}</version>
85         <configuration>
86           <mainClass>org.onap.so.simulator.Simulator</mainClass>
87         </configuration>
88         <executions>
89           <execution>
90             <goals>
91               <goal>repackage</goal>
92             </goals>
93           </execution>
94         </executions>
95       </plugin>
96       <plugin>
97         <groupId>io.fabric8</groupId>
98         <artifactId>docker-maven-plugin</artifactId>
99         <executions>
100           <execution>
101             <id>start</id>
102           </execution>
103         </executions>
104       </plugin>
105       <plugin>
106         <groupId>org.apache.maven.plugins</groupId>
107         <artifactId>maven-jar-plugin</artifactId>
108         <executions>
109           <execution>
110             <id>original</id>
111             <phase>package</phase>
112           </execution>
113         </executions>
114       </plugin>
115     </plugins>
116   </build>
117
118 </project>