Murali-P | d0e2136 | 2017-07-31 11:06:26 +0530 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Murali | 3763a1c | 2017-09-04 18:01:51 +0000 | [diff] [blame^] | 2 | <!-- Copyright 2017 Huawei Technologies Co., Ltd. Licensed under the Apache |
| 3 | License, Version 2.0 (the "License"); you may not use this file except in |
| 4 | compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 |
| 5 | Unless required by applicable law or agreed to in writing, software distributed |
| 6 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES |
| 7 | OR CONDITIONS OF ANY KIND, either express or implied. See the License for |
| 8 | the specific language governing permissions and limitations under the License. --> |
| 9 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 10 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 11 | <parent> |
| 12 | <groupId>org.onap.vnfsdk.refrepo</groupId> |
| 13 | <artifactId>vnf-sdk-marketplace-core-parent</artifactId> |
| 14 | <version>1.0.0-SNAPSHOT</version> |
| 15 | </parent> |
Murali-P | d0e2136 | 2017-07-31 11:06:26 +0530 | [diff] [blame] | 16 | |
Murali | 3763a1c | 2017-09-04 18:01:51 +0000 | [diff] [blame^] | 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | <artifactId>vnf-sdk-marketplace</artifactId> |
| 19 | <version>1.0.0-SNAPSHOT</version> |
| 20 | <name>vnf-sdk-marketplace/vnf-sdk-marketplace</name> |
| 21 | <packaging>war</packaging> |
| 22 | |
| 23 | <properties> |
| 24 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 25 | <cxf.version>3.1.6</cxf.version> |
| 26 | <!-- slf4j.version>1.6.1</slf4j.version> --> |
| 27 | <maven.test.skip>false</maven.test.skip> |
| 28 | <maven.test.failure.ignore>false</maven.test.failure.ignore> |
| 29 | </properties> |
| 30 | |
Murali-P | 3e70bdf | 2017-08-09 11:01:34 +0530 | [diff] [blame] | 31 | <repositories> |
Murali | 3763a1c | 2017-09-04 18:01:51 +0000 | [diff] [blame^] | 32 | <repository> |
| 33 | <id>open-o</id> |
| 34 | <name>OPEN-O repository</name> |
| 35 | <url>https://nexus.open-o.org/content/repositories/public/</url> |
| 36 | </repository> |
Murali-P | 3e70bdf | 2017-08-09 11:01:34 +0530 | [diff] [blame] | 37 | </repositories> |
Murali | 3763a1c | 2017-09-04 18:01:51 +0000 | [diff] [blame^] | 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.cxf</groupId> |
| 42 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 43 | <version>${cxf.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apache.cxf</groupId> |
| 47 | <artifactId>cxf-rt-rs-client</artifactId> |
| 48 | <version>${cxf.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.apache.cxf</groupId> |
| 52 | <artifactId>cxf-rt-transports-http-hc</artifactId> |
| 53 | <version>${cxf.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>log4j</groupId> |
| 57 | <artifactId>log4j</artifactId> |
| 58 | <version>1.2.16</version> |
| 59 | <exclusions> |
| 60 | <exclusion> |
| 61 | <groupId>org.slf4j</groupId> |
| 62 | <artifactId>slf4j-log4j12</artifactId> |
| 63 | </exclusion> |
| 64 | <exclusion> |
| 65 | <groupId>log4j</groupId> |
| 66 | <artifactId>log4j</artifactId> |
| 67 | </exclusion> |
| 68 | </exclusions> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.openo.common-services.common-utilities</groupId> |
| 72 | <artifactId>commonlib-cbb</artifactId> |
| 73 | <version>2.0.0</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>io.dropwizard</groupId> |
| 77 | <artifactId>dropwizard-core</artifactId> |
| 78 | <version>0.8.0</version> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>io.dropwizard</groupId> |
| 82 | <artifactId>dropwizard-assets</artifactId> |
| 83 | <version>0.8.0</version> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>io.dropwizard</groupId> |
| 87 | <artifactId>dropwizard-hibernate</artifactId> |
| 88 | <version>0.8.0</version> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>io.swagger</groupId> |
| 92 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 93 | <version>1.5.3</version> |
| 94 | </dependency> |
| 95 | <!-- jersey --> |
| 96 | <dependency> |
| 97 | <groupId>org.glassfish.jersey.core</groupId> |
| 98 | <artifactId>jersey-server</artifactId> |
| 99 | <version>2.16</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.glassfish.jersey.media</groupId> |
| 103 | <artifactId>jersey-media-multipart</artifactId> |
| 104 | <version>2.16</version> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.glassfish.jersey.containers</groupId> |
| 108 | <artifactId>jersey-container-servlet-core</artifactId> |
| 109 | <version>2.16</version> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.apache.httpcomponents</groupId> |
| 113 | <artifactId>httpmime</artifactId> |
| 114 | <version>4.5.2</version> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.openo.common-services.common-utilities</groupId> |
| 118 | <artifactId>commonlib-restclient</artifactId> |
| 119 | <version>2.0.0</version> |
| 120 | </dependency> |
| 121 | <!-- consumer --> |
| 122 | <dependency> |
| 123 | <groupId>com.eclipsesource.jaxrs</groupId> |
| 124 | <artifactId>consumer</artifactId> |
| 125 | <exclusions> |
| 126 | <exclusion> |
| 127 | <groupId>com.eclipsesource.jaxrs</groupId> |
| 128 | <artifactId>jersey-all</artifactId> |
| 129 | </exclusion> |
| 130 | </exclusions> |
| 131 | <version>5.0</version> |
| 132 | </dependency> |
| 133 | <!-- gson --> |
| 134 | <dependency> |
| 135 | <groupId>com.google.code.gson</groupId> |
| 136 | <artifactId>gson</artifactId> |
| 137 | <version>2.2.4</version> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>mysql</groupId> |
| 141 | <artifactId>mysql-connector-java</artifactId> |
| 142 | <version>5.1.18</version> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.mybatis</groupId> |
| 146 | <artifactId>mybatis</artifactId> |
| 147 | <version>3.2.7</version> |
| 148 | </dependency> |
| 149 | <!-- UT --> |
| 150 | <dependency> |
| 151 | <groupId>junit</groupId> |
| 152 | <artifactId>junit</artifactId> |
| 153 | <version>4.12</version> |
| 154 | <scope>test</scope> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>org.powermock</groupId> |
| 158 | <artifactId>powermock-module-junit4</artifactId> |
| 159 | <version>1.4.10</version> |
| 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.powermock</groupId> |
| 164 | <artifactId>powermock-api-mockito</artifactId> |
| 165 | <version>1.4.10</version> |
| 166 | <scope>test</scope> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>org.jmockit</groupId> |
| 170 | <artifactId>jmockit</artifactId> |
| 171 | <version>1.19</version> |
| 172 | <scope>test</scope> |
| 173 | </dependency> |
| 174 | <dependency> |
| 175 | <groupId>org.jmockit</groupId> |
| 176 | <artifactId>jmockit-coverage</artifactId> |
| 177 | <version>1.19</version> |
| 178 | <scope>test</scope> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.apache.ant</groupId> |
| 182 | <artifactId>ant</artifactId> |
| 183 | <version>1.8.2</version> |
| 184 | <scope>test</scope> |
| 185 | </dependency> |
| 186 | <!-- UT end --> |
| 187 | </dependencies> |
| 188 | <profiles> |
| 189 | <profile> |
| 190 | <id>all-tests</id> |
| 191 | <properties> |
| 192 | <build.profile.id>all-tests</build.profile.id> |
| 193 | <skip.unit.tests>false</skip.unit.tests> |
| 194 | </properties> |
| 195 | </profile> |
| 196 | </profiles> |
| 197 | <build> |
| 198 | <finalName>ROOT</finalName> |
| 199 | <plugins> |
| 200 | <!-- Used for unit tests --> |
| 201 | <plugin> |
| 202 | <groupId>org.apache.maven.plugins</groupId> |
| 203 | <artifactId>maven-surefire-plugin</artifactId> |
| 204 | <version>2.19.1</version> |
| 205 | <configuration> |
| 206 | <forkMode>always</forkMode> |
| 207 | <argLine>${surefireArgLine}</argLine> |
| 208 | <skip>${maven.test.skip}</skip> |
| 209 | <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore> |
| 210 | <!-- Excludes integration tests when unit tests are run. --> |
| 211 | <excludes> |
| 212 | <exclude>**/IT*.java</exclude> |
| 213 | </excludes> |
| 214 | </configuration> |
| 215 | </plugin> |
| 216 | </plugins> |
| 217 | </build> |
Murali-P | d0e2136 | 2017-07-31 11:06:26 +0530 | [diff] [blame] | 218 | </project> |