Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [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 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <artifactId>common-app-api</artifactId> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
| 11 | <version>1.0.0-SNAPSHOT</version> |
| 12 | </parent> |
| 13 | |
| 14 | |
| 15 | <dependencies> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 16 | |
| 17 | <dependency> |
| 18 | <groupId>org.springframework</groupId> |
| 19 | <artifactId>spring-core</artifactId> |
| 20 | <version>${spring.version}</version> |
| 21 | <scope>provided</scope> |
| 22 | </dependency> |
| 23 | |
| 24 | <dependency> |
| 25 | <groupId>org.springframework</groupId> |
| 26 | <artifactId>spring-beans</artifactId> |
| 27 | <version>${spring.version}</version> |
| 28 | <scope>provided</scope> |
| 29 | </dependency> |
| 30 | |
| 31 | <dependency> |
| 32 | <groupId>org.springframework</groupId> |
| 33 | <artifactId>spring-context</artifactId> |
| 34 | <version>${spring.version}</version> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | |
| 38 | <dependency> |
| 39 | <groupId>org.springframework</groupId> |
| 40 | <artifactId>spring-context-support</artifactId> |
| 41 | <version>${spring.version}</version> |
| 42 | <scope>provided</scope> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>org.springframework</groupId> |
| 47 | <artifactId>spring-messaging</artifactId> |
| 48 | <version>${spring.version}</version> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-web</artifactId> |
| 55 | <version>${spring.version}</version> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.springframework</groupId> |
| 61 | <artifactId>spring-webmvc</artifactId> |
| 62 | <version>${spring.version}</version> |
| 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.springframework</groupId> |
| 68 | <artifactId>spring-aop</artifactId> |
| 69 | <version>${spring.version}</version> |
| 70 | <scope>provided</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.springframework</groupId> |
| 75 | <artifactId>spring-aspects</artifactId> |
| 76 | <version>${spring.version}</version> |
| 77 | <scope>provided</scope> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.springframework</groupId> |
| 82 | <artifactId>spring-test</artifactId> |
| 83 | <version>${spring.version}</version> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.springframework</groupId> |
| 89 | <artifactId>spring-expression</artifactId> |
| 90 | <version>${spring.version}</version> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | |
| 94 | |
| 95 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 96 | <groupId>org.openecomp.sdc</groupId> |
| 97 | <artifactId>security-utils</artifactId> |
| 98 | <version>${security-utils.version}</version> |
| 99 | <scope>provided</scope> |
| 100 | </dependency> |
| 101 | <!-- functional java --> |
| 102 | |
| 103 | <dependency> |
| 104 | <groupId>org.functionaljava</groupId> |
| 105 | <artifactId>functionaljava</artifactId> |
| 106 | <scope>compile</scope> |
| 107 | </dependency> |
| 108 | |
| 109 | <dependency> |
| 110 | <groupId>org.slf4j</groupId> |
| 111 | <artifactId>slf4j-api</artifactId> |
| 112 | <scope>provided</scope> |
| 113 | </dependency> |
| 114 | |
| 115 | <dependency> |
| 116 | <groupId>javax.servlet</groupId> |
| 117 | <artifactId>servlet-api</artifactId> |
| 118 | <scope>provided</scope> |
| 119 | </dependency> |
| 120 | |
| 121 | <dependency> |
| 122 | <groupId>org.glassfish.jersey.containers</groupId> |
| 123 | <artifactId>jersey-container-servlet</artifactId> |
| 124 | <scope>provided</scope> |
| 125 | </dependency> |
| 126 | |
| 127 | <!-- yaml to object converter --> |
| 128 | <dependency> |
| 129 | <groupId>org.yaml</groupId> |
| 130 | <artifactId>snakeyaml</artifactId> |
| 131 | <scope>provided</scope> |
| 132 | </dependency> |
| 133 | |
| 134 | <!-- listen to file changes --> |
| 135 | <dependency> |
| 136 | <groupId>org.apache.commons</groupId> |
| 137 | <artifactId>commons-jci-core</artifactId> |
| 138 | <scope>provided</scope> |
| 139 | </dependency> |
| 140 | |
| 141 | <!-- Gson --> |
| 142 | <dependency> |
| 143 | <groupId>com.google.code.gson</groupId> |
| 144 | <artifactId>gson</artifactId> |
| 145 | <scope>provided</scope> |
| 146 | </dependency> |
| 147 | |
| 148 | <!-- http client --> |
| 149 | <dependency> |
| 150 | <groupId>org.apache.httpcomponents</groupId> |
| 151 | <artifactId>httpclient</artifactId> |
| 152 | <scope>provided</scope> |
| 153 | </dependency> |
| 154 | |
| 155 | <dependency> |
| 156 | <groupId>org.apache.httpcomponents</groupId> |
| 157 | <artifactId>httpcore</artifactId> |
| 158 | <scope>provided</scope> |
| 159 | </dependency> |
| 160 | |
| 161 | <dependency> |
| 162 | <groupId>commons-logging</groupId> |
| 163 | <artifactId>commons-logging</artifactId> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame^] | 164 | <version>1.2.1-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 165 | <scope>provided</scope> |
| 166 | </dependency> |
| 167 | |
| 168 | <dependency> |
| 169 | <groupId>commons-codec</groupId> |
| 170 | <artifactId>commons-codec</artifactId> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame^] | 171 | <version>2.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 172 | <scope>provided</scope> |
| 173 | </dependency> |
| 174 | |
| 175 | <dependency> |
| 176 | <groupId>org.glassfish.jersey.media</groupId> |
| 177 | <artifactId>jersey-media-json-jackson</artifactId> |
| 178 | <scope>provided</scope> |
| 179 | </dependency> |
| 180 | |
| 181 | <!-- Aspects --> |
| 182 | <dependency> |
| 183 | <groupId>com.jcabi</groupId> |
| 184 | <artifactId>jcabi-aspects</artifactId> |
| 185 | <scope>provided</scope> |
| 186 | </dependency> |
| 187 | |
| 188 | <dependency> |
| 189 | <groupId>org.aspectj</groupId> |
| 190 | <artifactId>aspectjrt</artifactId> |
| 191 | <scope>provided</scope> |
| 192 | </dependency> |
| 193 | |
| 194 | <dependency> |
| 195 | <groupId>org.apache.commons</groupId> |
| 196 | <artifactId>commons-lang3</artifactId> |
| 197 | <scope>provided</scope> |
| 198 | </dependency> |
| 199 | |
| 200 | <dependency> |
| 201 | <groupId>com.fasterxml.jackson.core</groupId> |
| 202 | <artifactId>jackson-databind</artifactId> |
| 203 | <scope>provided</scope> |
| 204 | </dependency> |
| 205 | |
| 206 | <dependency> |
| 207 | <groupId>com.fasterxml.jackson.core</groupId> |
| 208 | <artifactId>jackson-core</artifactId> |
| 209 | <scope>provided</scope> |
| 210 | </dependency> |
| 211 | <!-- logging --> |
| 212 | <dependency> |
| 213 | <groupId>ch.qos.logback</groupId> |
| 214 | <artifactId>logback-classic</artifactId> |
| 215 | <scope>provided</scope> |
| 216 | </dependency> |
| 217 | |
| 218 | <dependency> |
| 219 | <groupId>ch.qos.logback</groupId> |
| 220 | <artifactId>logback-core</artifactId> |
| 221 | <scope>provided</scope> |
| 222 | </dependency> |
| 223 | <!-- logging end --> |
| 224 | <!-- --> |
| 225 | <dependency> |
| 226 | <groupId>com.google.guava</groupId> |
| 227 | <artifactId>guava</artifactId> |
| 228 | <version>${guava.version}</version><!--$NO-MVN-MAN-VER$--> |
| 229 | <scope>provided</scope> |
| 230 | </dependency> |
| 231 | |
| 232 | <dependency> |
| 233 | <groupId>org.fusesource</groupId> |
| 234 | <artifactId>sigar</artifactId> |
| 235 | <scope>compile</scope> |
| 236 | </dependency> |
| 237 | |
| 238 | <dependency> |
| 239 | <groupId>junit</groupId> |
| 240 | <artifactId>junit</artifactId> |
| 241 | <scope>test</scope> |
| 242 | </dependency> |
| 243 | |
| 244 | <dependency> |
| 245 | <groupId>org.mockito</groupId> |
| 246 | <artifactId>mockito-all</artifactId> |
| 247 | <scope>test</scope> |
| 248 | </dependency> |
| 249 | |
| 250 | <!-- jsoup HTML parser library @ http://jsoup.org/ --> |
| 251 | <dependency> |
| 252 | <groupId>org.jsoup</groupId> |
| 253 | <artifactId>jsoup</artifactId> |
| 254 | <version>1.8.3</version> |
| 255 | </dependency> |
| 256 | |
| 257 | <dependency> |
| 258 | <groupId>commons-validator</groupId> |
| 259 | <artifactId>commons-validator</artifactId> |
| 260 | <version>1.5.1</version> |
| 261 | </dependency> |
| 262 | |
| 263 | <dependency> |
| 264 | <groupId>org.codehaus.jettison</groupId> |
| 265 | <artifactId>jettison</artifactId> |
| 266 | <version>1.3.8</version> |
| 267 | </dependency> |
| 268 | |
| 269 | <dependency> |
| 270 | <groupId>de.ruedigermoeller</groupId> |
| 271 | <artifactId>fst</artifactId> |
| 272 | <version>2.47</version> |
| 273 | <scope>compile</scope> |
| 274 | </dependency> |
| 275 | </dependencies> |
| 276 | |
| 277 | <build> |
| 278 | <plugins> |
| 279 | <plugin> |
| 280 | <groupId>org.apache.maven.plugins</groupId> |
| 281 | <artifactId>maven-deploy-plugin</artifactId> |
| 282 | <version>2.7</version> |
| 283 | <configuration> |
| 284 | <skip>true</skip> |
| 285 | </configuration> |
| 286 | </plugin> |
| 287 | </plugins> |
| 288 | </build> |
| 289 | |
| 290 | </project> |