blob: ed7635479270f8189b96d1078ecc7dc57f6f5f6a [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>
Rob Daugherty325d4e22018-10-19 15:13:38 -04007 <version>1.4.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>
Benjamin, Max (mb388a)aaa93d42019-03-20 14:12:06 -040058 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-surefire-plugin</artifactId>
61 <executions>
62 <execution>
63 <id>default-test</id>
64 <goals>
65 <goal>test</goal>
66 </goals>
67 <configuration>
68 <includes>
69 <include>**/AllTestsTestSuite.java</include>
70 </includes>
71 <parallel>suites</parallel>
72 </configuration>
73 </execution>
74 </executions>
75 </plugin>
ChrisC025301d2017-01-31 11:40:03 +010076 </plugins>
77 </build>
78
79 <dependencies>
80 <dependency>
Benjamin, Max (mb388a)a81aef22018-08-13 09:48:57 -040081 <groupId>org.glassfish.jersey.core</groupId>
82 <artifactId>jersey-client</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>ch.vorburger.mariaDB4j</groupId>
86 <artifactId>mariaDB4j</artifactId>
87 <version>2.2.3</version>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -040091 <groupId>org.onap.so.adapters</groupId>
92 <artifactId>mso-adapters-rest-interface</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040096 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-data-jpa</artifactId>
98 <optional>true</optional>
99 </dependency>
100 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400101 <groupId>org.onap.so</groupId>
Smokowski, Steve (ss835w)b92b1f82018-08-30 19:06:46 -0400102 <artifactId>mso-catalog-db</artifactId>
Rob Daugherty38f72072018-03-14 02:07:32 -0400103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500106 <groupId>org.onap.so</groupId>
Rob Daugherty38f72072018-03-14 02:07:32 -0400107 <artifactId>cloudify-client</artifactId>
ChrisC025301d2017-01-31 11:40:03 +0100108 <version>${project.version}</version>
109 </dependency>
110 <dependency>
111 <groupId>javax.servlet</groupId>
112 <artifactId>javax.servlet-api</artifactId>
ChrisC025301d2017-01-31 11:40:03 +0100113 <scope>provided</scope>
114 </dependency>
115 <dependency>
Seshu-Kumar-M50080262017-10-03 17:40:58 +0530116 <groupId>org.jmockit</groupId>
117 <artifactId>jmockit</artifactId>
118 <version>1.8</version>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
ChrisC025301d2017-01-31 11:40:03 +0100122 <groupId>org.yaml</groupId>
123 <artifactId>snakeyaml</artifactId>
ChrisC025301d2017-01-31 11:40:03 +0100124 </dependency>
dfilppib5e41902018-04-11 22:29:43 +0000125 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400126 <groupId>org.springframework.boot</groupId>
127 <artifactId>spring-boot-starter-test</artifactId>
Kalkere Ramesh, Sharan (sk720x)0cdb9732018-03-23 16:11:44 -0400128 <scope>test</scope>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400129 </dependency>
130 <dependency>
131 <groupId>com.h2database</groupId>
132 <artifactId>h2</artifactId>
133 <scope>test</scope>
Kalkere Ramesh, Sharan (sk720x)0cdb9732018-03-23 16:11:44 -0400134 </dependency>
Smokowski, Steve (ss835w)b92b1f82018-08-30 19:06:46 -0400135 <dependency>
136 <groupId>org.apache.cxf</groupId>
137 <artifactId>cxf-rt-rs-client</artifactId>
138 <version>${cxf.version}</version>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.cxf</groupId>
142 <artifactId>cxf-rt-bindings-soap</artifactId>
143 <version>${cxf.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.cxf</groupId>
147 <artifactId>cxf-rt-transports-http</artifactId>
148 <version>${cxf.version}</version>
149 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100150 </dependencies>
151</project>