blob: 8c2c529701f3519a178554ac4d361608062b042b [file] [log] [blame]
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -04001<?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>
waqas.ikram98537632021-06-24 11:51:34 +01008 <version>1.9.0-SNAPSHOT</version>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -04009 </parent>
10 <modelVersion>4.0.0</modelVersion>
11 <artifactId>so-simulator</artifactId>
Smokowski, Stevenf388c242020-01-30 16:39:49 -050012 <groupId>org.onap.so.simulator</groupId>
13 <name>SO REST Simulator</name>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040014 <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>
Mnushkin, Dmitry (dm4252)1d1a6fa2020-02-11 09:36:12 -060020 <spring.boot.version>2.0.9.RELEASE</spring.boot.version>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040021 </properties>
Mnushkin, Dmitry (dm4252)1d1a6fa2020-02-11 09:36:12 -060022 <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>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040033 <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>
Benjamin, Max4f774ee2020-04-28 15:13:12 -040055 <artifactId>aai-client</artifactId>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040056 <version>${project.version}</version>
57 </dependency>
58 <dependency>
Smokowski, Stevenf388c242020-01-30 16:39:49 -050059 <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>
Smokowski, Stevenf388c242020-01-30 16:39:49 -050065 </dependency>
66 <dependency>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040067 <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>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040077 <configuration>
78 <encoding>${project.build.sourceEncoding}</encoding>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040079 </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>
Benjamin, Max5f57d092020-05-13 17:48:03 -040098 <artifactId>docker-maven-plugin</artifactId>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040099 <executions>
100 <execution>
101 <id>start</id>
102 </execution>
103 </executions>
104 </plugin>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400105 <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>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -0400115 </plugins>
116 </build>
117
118</project>