ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 6 | <artifactId>adapters</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 7 | <version>1.4.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 8 | </parent> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 9 | <groupId>org.onap.so.adapters</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 10 | <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) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 26 | <build> |
| 27 | <finalName>${project.artifactId}</finalName> |
| 28 | <sourceDirectory>src/main/java</sourceDirectory> |
| 29 | <plugins> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 30 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 54 | <plugin> |
| 55 | <groupId>org.jacoco</groupId> |
| 56 | <artifactId>jacoco-maven-plugin</artifactId> |
| 57 | </plugin> |
Benjamin, Max (mb388a) | aaa93d4 | 2019-03-20 14:12:06 -0400 | [diff] [blame] | 58 | <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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 76 | </plugins> |
| 77 | </build> |
| 78 | |
| 79 | <dependencies> |
| 80 | <dependency> |
Benjamin, Max (mb388a) | a81aef2 | 2018-08-13 09:48:57 -0400 | [diff] [blame] | 81 | <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 Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 91 | <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) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 96 | <groupId>org.springframework.boot</groupId> |
| 97 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 98 | <optional>true</optional> |
| 99 | </dependency> |
| 100 | <dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 101 | <groupId>org.onap.so</groupId> |
Smokowski, Steve (ss835w) | b92b1f8 | 2018-08-30 19:06:46 -0400 | [diff] [blame] | 102 | <artifactId>mso-catalog-db</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 103 | <version>${project.version}</version> |
| 104 | </dependency> |
| 105 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 106 | <groupId>org.onap.so</groupId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 107 | <artifactId>cloudify-client</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 108 | <version>${project.version}</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>javax.servlet</groupId> |
| 112 | <artifactId>javax.servlet-api</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 113 | <scope>provided</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
Seshu-Kumar-M | 5008026 | 2017-10-03 17:40:58 +0530 | [diff] [blame] | 116 | <groupId>org.jmockit</groupId> |
| 117 | <artifactId>jmockit</artifactId> |
| 118 | <version>1.8</version> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 122 | <groupId>org.yaml</groupId> |
| 123 | <artifactId>snakeyaml</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 124 | </dependency> |
dfilppi | b5e4190 | 2018-04-11 22:29:43 +0000 | [diff] [blame] | 125 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 126 | <groupId>org.springframework.boot</groupId> |
| 127 | <artifactId>spring-boot-starter-test</artifactId> |
Kalkere Ramesh, Sharan (sk720x) | 0cdb973 | 2018-03-23 16:11:44 -0400 | [diff] [blame] | 128 | <scope>test</scope> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>com.h2database</groupId> |
| 132 | <artifactId>h2</artifactId> |
| 133 | <scope>test</scope> |
Kalkere Ramesh, Sharan (sk720x) | 0cdb973 | 2018-03-23 16:11:44 -0400 | [diff] [blame] | 134 | </dependency> |
Smokowski, Steve (ss835w) | b92b1f8 | 2018-08-30 19:06:46 -0400 | [diff] [blame] | 135 | <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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 150 | </dependencies> |
| 151 | </project> |