blob: 566eef7b2f345132e643a8628f893889f42c3b75 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +01006 <artifactId>adapters</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <version>1.3.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05009 <groupId>org.onap.so.adapters</groupId>
ChrisC025301d2017-01-31 11:40:03 +010010 <artifactId>mso-adapter-utils</artifactId>
11 <name>mso-adapter-utils</name>
12 <description>Common MSO utilities, including Openstack client wrappers.</description>
13
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040014 <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>
ChrisC025301d2017-01-31 11:40:03 +010026 <build>
27 <finalName>${project.artifactId}</finalName>
28 <sourceDirectory>src/main/java</sourceDirectory>
29 <plugins>
ChrisC1ba1d192017-03-13 05:01:04 -070030
ChrisC025301d2017-01-31 11:40:03 +010031 <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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040054 <plugin>
55 <groupId>org.jacoco</groupId>
56 <artifactId>jacoco-maven-plugin</artifactId>
57 </plugin>
ChrisC025301d2017-01-31 11:40:03 +010058 </plugins>
59 </build>
60
61 <dependencies>
62 <dependency>
Benjamin, Max (mb388a)a81aef22018-08-13 09:48:57 -040063 <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>
Rob Daugherty38f72072018-03-14 02:07:32 -040073 <groupId>org.onap.so.adapters</groupId>
74 <artifactId>mso-adapters-rest-interface</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040078 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-data-jpa</artifactId>
80 <optional>true</optional>
81 </dependency>
82 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -040083 <groupId>org.onap.so</groupId>
84 <artifactId>mso-catalog-db</artifactId>
85 <version>${project.version}</version>
86 </dependency>
87 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050088 <groupId>org.onap.so</groupId>
Rob Daugherty38f72072018-03-14 02:07:32 -040089 <artifactId>cloudify-client</artifactId>
ChrisC025301d2017-01-31 11:40:03 +010090 <version>${project.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>javax.servlet</groupId>
94 <artifactId>javax.servlet-api</artifactId>
95 <version>3.1.0</version>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
Seshu-Kumar-M50080262017-10-03 17:40:58 +053099 <groupId>org.jmockit</groupId>
100 <artifactId>jmockit</artifactId>
101 <version>1.8</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
ChrisC025301d2017-01-31 11:40:03 +0100105 <groupId>org.yaml</groupId>
106 <artifactId>snakeyaml</artifactId>
107 <version>1.15</version>
108 </dependency>
dfilppib5e41902018-04-11 22:29:43 +0000109 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400110 <groupId>org.springframework.boot</groupId>
111 <artifactId>spring-boot-starter-test</artifactId>
Kalkere Ramesh, Sharan (sk720x)0cdb9732018-03-23 16:11:44 -0400112 <scope>test</scope>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400113 </dependency>
114 <dependency>
115 <groupId>com.h2database</groupId>
116 <artifactId>h2</artifactId>
117 <scope>test</scope>
Kalkere Ramesh, Sharan (sk720x)0cdb9732018-03-23 16:11:44 -0400118 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100119 </dependencies>
120</project>