Merge Casablanca
[so.git] / adapters / mso-adapter-utils / 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</groupId>
6                 <artifactId>adapters</artifactId>
7                 <version>1.4.0-SNAPSHOT</version>
8         </parent>
9         <groupId>org.onap.so.adapters</groupId>
10         <artifactId>mso-adapter-utils</artifactId>
11         <name>mso-adapter-utils</name>
12         <description>Common MSO utilities, including Openstack client wrappers.</description>
13
14         <dependencyManagement>
15                 <dependencies>
16                         <dependency>
17                                 <!-- Import dependency management from Spring Boot -->
18                                 <groupId>org.springframework.boot</groupId>
19                                 <artifactId>spring-boot-dependencies</artifactId>
20                                 <version>${springboot.version}</version>
21                                 <type>pom</type>
22                                 <scope>import</scope>
23                         </dependency>
24                 </dependencies>
25         </dependencyManagement>
26         <build>
27                 <finalName>${project.artifactId}</finalName>
28                 <sourceDirectory>src/main/java</sourceDirectory>
29                 <plugins>
30
31                         <plugin>
32                                 <groupId>org.apache.maven.plugins</groupId>
33                                 <artifactId>maven-resources-plugin</artifactId>
34                                 <version>2.6</version>
35                                 <executions>
36                                         <execution>
37                                                 <id>copy-resources</id>
38                                                 <phase>validate</phase>
39                                                 <goals>
40                                                         <goal>copy-resources</goal>
41                                                 </goals>
42                                                 <configuration>
43                                                         <resources>
44                                                                 <resource>
45                                                                         <directory>./src/main/resources/META-INF</directory>
46                                                                         <filtering>false</filtering>
47                                                                 </resource>
48                                                         </resources>
49                                                         <outputDirectory>${project.build.directory}/${project.build.finalName}/META-INF/</outputDirectory>
50                                                 </configuration>
51                                         </execution>
52                                 </executions>
53                         </plugin>
54                         <plugin>
55                                 <groupId>org.jacoco</groupId>
56                                 <artifactId>jacoco-maven-plugin</artifactId>
57                           </plugin>
58                 </plugins>
59         </build>
60
61         <dependencies>
62                 <dependency>
63                         <groupId>org.glassfish.jersey.core</groupId>
64                         <artifactId>jersey-client</artifactId>
65                 </dependency>
66                 <dependency>
67                         <groupId>ch.vorburger.mariaDB4j</groupId>
68                         <artifactId>mariaDB4j</artifactId>
69                         <version>2.2.3</version>
70                         <scope>test</scope>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.onap.so.adapters</groupId>
74                         <artifactId>mso-adapters-rest-interface</artifactId>
75                         <version>${project.version}</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.springframework.boot</groupId>
79                         <artifactId>spring-boot-starter-data-jpa</artifactId>
80                         <optional>true</optional>
81                 </dependency>
82                 <dependency>
83                         <groupId>org.onap.so</groupId>
84                         <artifactId>mso-catalog-db</artifactId> 
85                         <version>${project.version}</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.onap.so</groupId>
89                         <artifactId>cloudify-client</artifactId>
90                         <version>${project.version}</version>
91                 </dependency>
92                 <dependency>
93                         <groupId>javax.servlet</groupId>
94                         <artifactId>javax.servlet-api</artifactId>
95                         <scope>provided</scope>
96                 </dependency>
97                 <dependency>
98                         <groupId>org.jmockit</groupId>
99                         <artifactId>jmockit</artifactId>
100                         <version>1.8</version>
101                         <scope>test</scope>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.yaml</groupId>
105                         <artifactId>snakeyaml</artifactId>
106                 </dependency>
107                 <dependency>
108                         <groupId>org.springframework.boot</groupId>
109                         <artifactId>spring-boot-starter-test</artifactId>
110                         <scope>test</scope>
111                 </dependency>
112                 <dependency>
113                         <groupId>com.h2database</groupId>
114                         <artifactId>h2</artifactId>
115                         <scope>test</scope>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.apache.cxf</groupId>
119                         <artifactId>cxf-rt-rs-client</artifactId>
120                         <version>${cxf.version}</version>
121                 </dependency>
122                 <dependency>
123                 <groupId>org.apache.cxf</groupId>
124                 <artifactId>cxf-rt-bindings-soap</artifactId>
125                         <version>${cxf.version}</version>
126                 </dependency>
127                 <dependency>
128                 <groupId>org.apache.cxf</groupId>
129                 <artifactId>cxf-rt-transports-http</artifactId>
130                 <version>${cxf.version}</version>
131                 </dependency>
132         </dependencies>
133 </project>