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" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 7 | <version>1.7.1-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>mso-sdnc-adapter</artifactId> |
| 10 | <properties> |
| 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 12 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 13 | </properties> |
| 14 | <name>mso-sdnc-adapter</name> |
| 15 | <description>mso sdnc adapter</description> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 16 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 17 | <build> |
| 18 | <finalName>${project.artifactId}-${project.version}</finalName> |
Benjamin, Max | 71d87a3 | 2020-06-24 10:44:53 -0400 | [diff] [blame] | 19 | <pluginManagement> |
Boslet, Cory | f5c3da8 | 2020-05-20 11:39:21 -0400 | [diff] [blame] | 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.eclipse.m2e</groupId> |
| 23 | <artifactId>lifecycle-mapping</artifactId> |
| 24 | <version>1.0.0</version> |
| 25 | <configuration> |
| 26 | <lifecycleMappingMetadata> |
| 27 | <pluginExecutions> |
| 28 | <pluginExecution> |
| 29 | <pluginExecutionFilter> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-dependency-plugin</artifactId> |
| 32 | <versionRange>[1.0.0,)</versionRange> |
| 33 | <goals> |
| 34 | <goal>unpack</goal> |
| 35 | </goals> |
| 36 | </pluginExecutionFilter> |
| 37 | <action> |
| 38 | <execute /> |
| 39 | </action> |
| 40 | </pluginExecution> |
| 41 | </pluginExecutions> |
| 42 | </lifecycleMappingMetadata> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </pluginManagement> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.cxf</groupId> |
| 50 | <artifactId>cxf-codegen-plugin</artifactId> |
| 51 | <version>2.5.2</version> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.springframework.boot</groupId> |
| 55 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 56 | <configuration> |
| 57 | <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass> |
| 58 | </configuration> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <goals> |
| 62 | <goal>repackage</goal> |
| 63 | </goals> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
| 69 | <artifactId>maven-jar-plugin</artifactId> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <id>original</id> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 73 | <phase>package</phase> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.jacoco</groupId> |
| 79 | <artifactId>jacoco-maven-plugin</artifactId> |
| 80 | </plugin> |
| 81 | <plugin> |
| 82 | <groupId>org.apache.maven.plugins</groupId> |
| 83 | <artifactId>maven-dependency-plugin</artifactId> |
| 84 | <executions> |
| 85 | <execution> |
| 86 | <id>extract-docker-file</id> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 87 | <configuration> |
| 88 | <skip>false</skip> |
| 89 | </configuration> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 90 | </execution> |
| 91 | </executions> |
| 92 | </plugin> |
| 93 | <plugin> |
| 94 | <groupId>io.fabric8</groupId> |
Benjamin, Max | 5f57d09 | 2020-05-13 17:48:03 -0400 | [diff] [blame] | 95 | <artifactId>docker-maven-plugin</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 96 | <executions> |
| 97 | <execution> |
| 98 | <id>start</id> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | </plugin> |
| 102 | <plugin> |
| 103 | <groupId>org.apache.maven.plugins</groupId> |
| 104 | <artifactId>maven-surefire-plugin</artifactId> |
| 105 | <executions> |
| 106 | <execution> |
| 107 | <id>default-test</id> |
| 108 | <goals> |
| 109 | <goal>test</goal> |
| 110 | </goals> |
| 111 | <configuration> |
| 112 | <includes> |
| 113 | <include>**/AllTestsTestSuite.java</include> |
| 114 | </includes> |
| 115 | <parallel>suites</parallel> |
| 116 | </configuration> |
| 117 | </execution> |
| 118 | </executions> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </build> |
| 122 | <dependencyManagement> |
| 123 | <dependencies> |
| 124 | <dependency> |
| 125 | <!-- Import dependency management from Spring Boot --> |
| 126 | <groupId>org.springframework.boot</groupId> |
| 127 | <artifactId>spring-boot-dependencies</artifactId> |
| 128 | <version>${springboot.version}</version> |
| 129 | <type>pom</type> |
| 130 | <scope>import</scope> |
| 131 | </dependency> |
| 132 | </dependencies> |
| 133 | </dependencyManagement> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 134 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 135 | <dependencies> |
| 136 | <dependency> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 137 | <groupId>com.sun.activation</groupId> |
| 138 | <artifactId>javax.activation</artifactId> |
| 139 | <version>1.2.0</version> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>javax.xml.bind</groupId> |
| 143 | <artifactId>jaxb-api</artifactId> |
| 144 | <version>2.3.0</version> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>com.sun.xml.bind</groupId> |
| 148 | <artifactId>jaxb-core</artifactId> |
| 149 | <version>2.3.0</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>com.sun.xml.bind</groupId> |
| 153 | <artifactId>jaxb-impl</artifactId> |
| 154 | <version>2.3.0</version> |
| 155 | </dependency> |
| 156 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 157 | <groupId>org.springframework.boot</groupId> |
| 158 | <artifactId>spring-boot-starter-web</artifactId> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>io.swagger</groupId> |
| 162 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 163 | <version>1.5.16</version> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>org.springframework.boot</groupId> |
| 167 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 168 | </dependency> |
| 169 | <dependency> |
| 170 | <groupId>org.springframework.boot</groupId> |
| 171 | <artifactId>spring-boot-starter-test</artifactId> |
| 172 | <scope>test</scope> |
| 173 | </dependency> |
| 174 | <dependency> |
| 175 | <groupId>org.onap.so.adapters</groupId> |
| 176 | <artifactId>mso-adapter-utils</artifactId> |
| 177 | <version>${project.version}</version> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>org.apache.cxf</groupId> |
| 181 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
| 182 | <version>${cxf.version}</version> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.apache.cxf</groupId> |
| 186 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
| 187 | <version>${cxf.version}</version> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>org.apache.cxf</groupId> |
| 191 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
| 192 | <version>${cxf.version}</version> |
| 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>org.springframework.boot</groupId> |
| 196 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 197 | <optional>true</optional> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>org.onap.so.adapters</groupId> |
| 201 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 202 | <version>${project.version}</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.glassfish</groupId> |
| 206 | <artifactId>javax.json</artifactId> |
| 207 | <version>1.0.4</version> |
| 208 | <scope>test</scope> |
| 209 | </dependency> |
| 210 | <dependency> |
| 211 | <groupId>io.micrometer</groupId> |
| 212 | <artifactId>micrometer-core</artifactId> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>io.micrometer</groupId> |
| 216 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 217 | </dependency> |
| 218 | <dependency> |
| 219 | <groupId>org.onap.so</groupId> |
| 220 | <artifactId>cxf-logging</artifactId> |
| 221 | <version>${project.version}</version> |
| 222 | </dependency> |
| 223 | </dependencies> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 224 | </project> |