Added CSIT for Macroflow with HEAT
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / multicloud-simulator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.onap.so.simulators</groupId>
8         <artifactId>so-simulators</artifactId>
9         <version>1.0-SNAPSHOT</version>
10     </parent>
11     <artifactId>multicloud-simulator</artifactId>
12     <name>${project.artifactId}</name>
13     <description>MultiCloud Simulator</description>
14     <properties>
15         <java.version>11</java.version>
16         <json-simple.version>1.1</json-simple.version>
17         <openstack4j.version>3.2.0</openstack4j.version>
18         <openstack4j-httpclient.version>3.2.0</openstack4j-httpclient.version>
19         <mso-adapters.version>1.7.1-SNAPSHOT</mso-adapters.version>
20         <spring-security.version>2.1.1.RELEASE</spring-security.version>
21     </properties>
22     <dependencies>
23         <dependency>
24             <groupId>${project.parent.groupId}</groupId>
25             <artifactId>common</artifactId>
26             <version>${project.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.springframework.boot</groupId>
30             <artifactId>spring-boot-starter</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.springframework.boot</groupId>
34             <artifactId>spring-boot-starter-test</artifactId>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.springframework.boot</groupId>
39             <artifactId>spring-boot-starter-security</artifactId>
40             <exclusions>
41                 <exclusion>
42                     <groupId>org.springframework.boot</groupId>
43                     <artifactId>spring-boot-starter-tomcat</artifactId>
44                 </exclusion>
45             </exclusions>
46         </dependency>
47         <dependency>
48             <groupId>com.googlecode.json-simple</groupId>
49             <artifactId>json-simple</artifactId>
50             <version>${json-simple.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.onap.so.adapters</groupId>
54             <artifactId>mso-adapters-rest-interface</artifactId>
55             <version>${mso-adapters.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.springframework.security.oauth.boot</groupId>
59             <artifactId>spring-security-oauth2-autoconfigure</artifactId>
60             <version>${spring-security.version}</version>
61         </dependency>
62     </dependencies>
63     <build>
64         <plugins>
65             <plugin>
66                 <groupId>org.springframework.boot</groupId>
67                 <artifactId>spring-boot-maven-plugin</artifactId>
68                 <configuration>
69                     <mainClass>org.onap.so.multicloudsimulator.MultiCloudSimulatorApplication</mainClass>
70                 </configuration>
71                 <executions>
72                     <execution>
73                         <goals>
74                             <goal>repackage</goal>
75                         </goals>
76                     </execution>
77                 </executions>
78             </plugin>
79             <plugin>
80                 <groupId>org.springframework.boot</groupId>
81                 <artifactId>spring-boot-maven-plugin</artifactId>
82             </plugin>
83         </plugins>
84     </build>
85
86 </project>