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