st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [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> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 4 | |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.portal</groupId> |
| 7 | <artifactId>onap-portal-parent</artifactId> |
hb123f | a70761c | 2019-03-20 12:20:44 -0400 | [diff] [blame] | 8 | <version>2.5.0</version> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 9 | </parent> |
| 10 | |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 11 | <artifactId>portal-be-common</artifactId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 12 | <packaging>war</packaging> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 13 | |
| 14 | <properties> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 15 | <skipTests>false</skipTests> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 16 | </properties> |
| 17 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 18 | <build> |
| 19 | <!-- The war file name carries no version number --> |
| 20 | <finalName>${project.artifactId}</finalName> |
| 21 | |
| 22 | <plugins> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 23 | <!-- Generate javadoc jar; see profile for Java 8 --> |
| 24 | <plugin> |
| 25 | <groupId>org.apache.maven.plugins</groupId> |
| 26 | <artifactId>maven-javadoc-plugin</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 27 | <version>3.0.0-M1</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 28 | <executions> |
| 29 | <execution> |
| 30 | <id>attach-javadocs</id> |
| 31 | <goals> |
| 32 | <goal>jar</goal> |
| 33 | </goals> |
| 34 | </execution> |
| 35 | </executions> |
| 36 | </plugin> |
| 37 | |
| 38 | <!-- Generate source jar --> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-source-plugin</artifactId> |
| 42 | <version>3.0.0</version> |
| 43 | <executions> |
| 44 | <execution> |
| 45 | <id>attach-sources</id> |
| 46 | <goals> |
| 47 | <goal>jar</goal> |
| 48 | </goals> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 52 | |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-jar-plugin</artifactId> |
| 56 | <version>3.0.0</version> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <goals> |
| 60 | <goal>test-jar</goal> |
| 61 | </goals> |
| 62 | </execution> |
| 63 | </executions> |
| 64 | </plugin> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 65 | |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-war-plugin</artifactId> |
| 69 | <version>3.0.0</version> |
| 70 | <configuration> |
| 71 | <!-- Build a jar with all the Java classes --> |
| 72 | <attachClasses>true</attachClasses> |
| 73 | <!-- Do not put any jars in the war --> |
| 74 | <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> |
| 75 | </configuration> |
| 76 | </plugin> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 77 | |
Christopher Lott (cl778h) | 31ba5d1 | 2017-07-12 14:28:05 -0400 | [diff] [blame] | 78 | <!-- No deployment step for this project --> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-deploy-plugin</artifactId> |
| 82 | <version>2.8</version> |
| 83 | <configuration> |
| 84 | <skip>true</skip> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 88 | </plugins> |
hb123f | a70761c | 2019-03-20 12:20:44 -0400 | [diff] [blame] | 89 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 90 | <testResources> |
| 91 | <testResource> |
| 92 | <directory>src/test/java</directory> |
| 93 | <includes> |
| 94 | <include>**/*Test*.*</include> |
| 95 | </includes> |
| 96 | </testResource> |
| 97 | </testResources> |
| 98 | |
| 99 | <resources> |
| 100 | <resource> |
| 101 | <directory>src/main/resources</directory> |
| 102 | <includes> |
| 103 | <include>**/*</include> |
| 104 | </includes> |
| 105 | </resource> |
| 106 | <!-- picks up the applicationcodes.properties file presented in \src\ |
| 107 | path --> |
| 108 | <resource> |
| 109 | <directory>src/main/java</directory> |
| 110 | <includes> |
| 111 | <include>**/*.xml</include> |
| 112 | <include>**/*.properties</include> |
| 113 | </includes> |
| 114 | </resource> |
| 115 | </resources> |
| 116 | |
| 117 | </build> |
| 118 | |
| 119 | <dependencies> |
hb123f | a70761c | 2019-03-20 12:20:44 -0400 | [diff] [blame] | 120 | <dependency> |
| 121 | <groupId>org.onap.aaf.authz</groupId> |
| 122 | <artifactId>aaf-cadi-aaf</artifactId> |
| 123 | <version>2.1.7</version> |
| 124 | <exclusions> |
| 125 | <exclusion> |
| 126 | <groupId>gso</groupId> |
| 127 | <artifactId>GLCookieDecryption</artifactId> |
| 128 | </exclusion> |
| 129 | </exclusions> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.onap.aaf.authz</groupId> |
| 133 | <artifactId>aaf-cadi-core</artifactId> |
| 134 | <version>2.1.7</version> |
| 135 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>com.att.eelf</groupId> |
| 138 | <artifactId>eelf-core</artifactId> |
| 139 | <version>${eelf.version}</version> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>com.google.code.gson</groupId> |
| 143 | <artifactId>gson</artifactId> |
| 144 | <version>2.5</version> |
| 145 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 146 | <!-- Spring --> |
| 147 | <dependency> |
| 148 | <groupId>org.springframework</groupId> |
| 149 | <artifactId>spring-core</artifactId> |
| 150 | <version>${springframework.version}</version> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.springframework</groupId> |
| 154 | <artifactId>spring-web</artifactId> |
| 155 | <version>${springframework.version}</version> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>org.springframework</groupId> |
| 159 | <artifactId>spring-webmvc</artifactId> |
| 160 | <version>${springframework.version}</version> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.springframework</groupId> |
| 164 | <artifactId>spring-tx</artifactId> |
| 165 | <version>${springframework.version}</version> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.springframework</groupId> |
| 169 | <artifactId>spring-context-support</artifactId> |
| 170 | <version>${springframework.version}</version> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>org.springframework</groupId> |
| 174 | <artifactId>spring-orm</artifactId> |
| 175 | <version>${springframework.version}</version> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.springframework</groupId> |
| 179 | <artifactId>spring-test</artifactId> |
| 180 | <version>${springframework.version}</version> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.springframework.boot</groupId> |
| 184 | <artifactId>spring-boot-starter</artifactId> |
| 185 | <version>1.3.0.RELEASE</version> |
| 186 | <exclusions> |
| 187 | <exclusion> |
| 188 | <groupId>org.slf4j</groupId> |
| 189 | <artifactId>log4j-over-slf4j</artifactId> |
| 190 | </exclusion> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 191 | </exclusions> |
| 192 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 193 | <!-- Hibernate --> |
| 194 | <dependency> |
| 195 | <groupId>org.hibernate</groupId> |
| 196 | <artifactId>hibernate-core</artifactId> |
| 197 | <version>${hibernate.version}</version> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>org.hibernate</groupId> |
| 201 | <artifactId>hibernate-validator</artifactId> |
| 202 | <version>5.1.3.Final</version> |
| 203 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 204 | <!-- hibernate-core depends on dom4j, which has optional dependencies. |
| 205 | On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies |
| 206 | in the war. Workaround: exclude them explicitly. --> |
| 207 | <dependency> |
| 208 | <groupId>dom4j</groupId> |
| 209 | <artifactId>dom4j</artifactId> |
| 210 | <version>1.6.1</version> |
| 211 | <exclusions> |
| 212 | <exclusion> |
| 213 | <groupId>jaxme</groupId> |
| 214 | <artifactId>jaxme-api</artifactId> |
| 215 | </exclusion> |
| 216 | <exclusion> |
| 217 | <groupId>jaxen</groupId> |
| 218 | <artifactId>jaxen</artifactId> |
| 219 | </exclusion> |
| 220 | <exclusion> |
| 221 | <groupId>msv</groupId> |
| 222 | <artifactId>xsdlib</artifactId> |
| 223 | </exclusion> |
| 224 | <exclusion> |
| 225 | <groupId>msv</groupId> |
| 226 | <artifactId>relaxngDatatype</artifactId> |
| 227 | </exclusion> |
| 228 | <exclusion> |
| 229 | <groupId>pull-parser</groupId> |
| 230 | <artifactId>pull-parser</artifactId> |
| 231 | </exclusion> |
| 232 | <exclusion> |
| 233 | <groupId>xpp3</groupId> |
| 234 | <artifactId>xpp3</artifactId> |
| 235 | </exclusion> |
| 236 | <exclusion> |
| 237 | <groupId>stax</groupId> |
| 238 | <artifactId>stax-api</artifactId> |
| 239 | </exclusion> |
| 240 | </exclusions> |
| 241 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 242 | <!-- Servlet+JSP+JSTL --> |
| 243 | <dependency> |
| 244 | <groupId>javax.servlet</groupId> |
| 245 | <artifactId>javax.servlet-api</artifactId> |
| 246 | <version>3.1.0</version> |
| 247 | </dependency> |
| 248 | <dependency> |
| 249 | <groupId>javax.servlet.jsp</groupId> |
| 250 | <artifactId>javax.servlet.jsp-api</artifactId> |
| 251 | <version>2.3.1</version> |
| 252 | </dependency> |
| 253 | <dependency> |
GUJJA | 1376951 | 2018-02-16 11:45:40 -0500 | [diff] [blame] | 254 | <groupId>org.apache.taglibs</groupId> |
| 255 | <artifactId>taglibs-standard-spec</artifactId> |
| 256 | <version>1.2.5</version> |
| 257 | </dependency> |
| 258 | <dependency> |
| 259 | <groupId>org.apache.taglibs</groupId> |
| 260 | <artifactId>taglibs-standard-impl</artifactId> |
| 261 | <version>1.2.5</version> |
| 262 | </dependency> |
| 263 | <dependency> |
| 264 | <groupId>org.apache.taglibs</groupId> |
| 265 | <artifactId>taglibs-standard-jstlel</artifactId> |
| 266 | <version>1.2.5</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 267 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 268 | <!-- Apache Tiles --> |
| 269 | <dependency> |
| 270 | <groupId>org.apache.tiles</groupId> |
| 271 | <artifactId>tiles-core</artifactId> |
| 272 | <version>3.0.5</version> |
| 273 | </dependency> |
| 274 | <dependency> |
| 275 | <groupId>org.apache.tiles</groupId> |
| 276 | <artifactId>tiles-jsp</artifactId> |
| 277 | <version>3.0.5</version> |
| 278 | </dependency> |
| 279 | <dependency> |
| 280 | <groupId>org.apache.cxf</groupId> |
| 281 | <artifactId>cxf-rt-rs-client</artifactId> |
| 282 | <version>3.0.0-milestone1</version> |
| 283 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 284 | <!-- Mapper --> |
| 285 | <dependency> |
| 286 | <groupId>com.fasterxml.jackson.core</groupId> |
| 287 | <artifactId>jackson-annotations</artifactId> |
| 288 | <version>${fasterxml.version}</version> |
| 289 | </dependency> |
| 290 | <dependency> |
| 291 | <groupId>com.fasterxml.jackson.core</groupId> |
| 292 | <artifactId>jackson-core</artifactId> |
| 293 | <version>${fasterxml.version}</version> |
| 294 | </dependency> |
| 295 | <dependency> |
| 296 | <groupId>com.fasterxml.jackson.core</groupId> |
| 297 | <artifactId>jackson-databind</artifactId> |
| 298 | <version>${fasterxml.version}</version> |
| 299 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 300 | <dependency> |
| 301 | <groupId>postgresql</groupId> |
| 302 | <artifactId>postgresql</artifactId> |
| 303 | <version>9.1-901-1.jdbc4</version> |
| 304 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 305 | <!-- Elastic Search --> |
| 306 | <dependency> |
| 307 | <groupId>org.elasticsearch</groupId> |
| 308 | <artifactId>elasticsearch</artifactId> |
| 309 | <version>2.2.0</version> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 310 | <exclusions> |
| 311 | <exclusion> |
| 312 | <groupId>org.apache.lucene</groupId> |
| 313 | <artifactId>lucene-queryparser</artifactId> |
| 314 | </exclusion> |
| 315 | </exclusions> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 316 | </dependency> |
| 317 | <dependency> |
| 318 | <groupId>io.searchbox</groupId> |
| 319 | <artifactId>jest</artifactId> |
| 320 | <version>2.0.0</version> |
| 321 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 322 | <dependency> |
| 323 | <groupId>org.apache.jcs</groupId> |
| 324 | <artifactId>jcs</artifactId> |
| 325 | <version>1.3</version> |
| 326 | <exclusions> |
| 327 | <exclusion> |
| 328 | <groupId>*</groupId> |
| 329 | <artifactId>*</artifactId> |
| 330 | </exclusion> |
| 331 | </exclusions> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 332 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 333 | <dependency> |
| 334 | <groupId>org.apache.tomcat</groupId> |
| 335 | <artifactId>tomcat-websocket</artifactId> |
| 336 | <version>8.0.28</version> |
| 337 | <scope>provided</scope> |
| 338 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 339 | <dependency> |
| 340 | <groupId>concurrent</groupId> |
| 341 | <artifactId>concurrent</artifactId> |
| 342 | <version>1.3.2</version> |
| 343 | <exclusions> |
| 344 | <exclusion> |
| 345 | <groupId>*</groupId> |
| 346 | <artifactId>*</artifactId> |
| 347 | </exclusion> |
| 348 | </exclusions> |
| 349 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 350 | <dependency> |
| 351 | <groupId>commons-lang</groupId> |
| 352 | <artifactId>commons-lang</artifactId> |
| 353 | <version>2.6</version> |
| 354 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 355 | <!-- for generating excel/csv/excelx --> |
| 356 | <dependency> |
| 357 | <groupId>org.apache.poi</groupId> |
| 358 | <artifactId>poi</artifactId> |
Kishore Reddy, Gujja (kg811t) | 8886b47 | 2018-03-23 18:16:50 -0400 | [diff] [blame] | 359 | <version>3.15</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 360 | <exclusions> |
| 361 | <exclusion> |
| 362 | <groupId>commons-logging</groupId> |
| 363 | <artifactId>commons-logging</artifactId> |
| 364 | </exclusion> |
| 365 | <exclusion> |
| 366 | <groupId>log4j</groupId> |
| 367 | <artifactId>log4j</artifactId> |
| 368 | </exclusion> |
| 369 | </exclusions> |
| 370 | </dependency> |
| 371 | <dependency> |
| 372 | <groupId>org.apache.poi</groupId> |
| 373 | <artifactId>poi-ooxml</artifactId> |
Kishore Reddy, Gujja (kg811t) | 8886b47 | 2018-03-23 18:16:50 -0400 | [diff] [blame] | 374 | <version>3.15</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 375 | <exclusions> |
| 376 | <exclusion> |
| 377 | <groupId>commons-logging</groupId> |
| 378 | <artifactId>commons-logging</artifactId> |
| 379 | </exclusion> |
| 380 | <exclusion> |
| 381 | <groupId>log4j</groupId> |
| 382 | <artifactId>log4j</artifactId> |
| 383 | </exclusion> |
| 384 | </exclusions> |
| 385 | </dependency> |
| 386 | <dependency> |
| 387 | <groupId>org.apache.poi</groupId> |
| 388 | <artifactId>poi-scratchpad</artifactId> |
| 389 | <version>3.5-FINAL</version> |
| 390 | <exclusions> |
| 391 | <exclusion> |
| 392 | <groupId>commons-logging</groupId> |
| 393 | <artifactId>commons-logging</artifactId> |
| 394 | </exclusion> |
| 395 | <exclusion> |
| 396 | <groupId>log4j</groupId> |
| 397 | <artifactId>log4j</artifactId> |
| 398 | </exclusion> |
| 399 | </exclusions> |
| 400 | </dependency> |
| 401 | <dependency> |
| 402 | <groupId>org.apache.poi</groupId> |
| 403 | <artifactId>poi-contrib</artifactId> |
| 404 | <version>3.5-FINAL</version> |
| 405 | <exclusions> |
| 406 | <exclusion> |
| 407 | <groupId>commons-logging</groupId> |
| 408 | <artifactId>commons-logging</artifactId> |
| 409 | </exclusion> |
| 410 | <exclusion> |
| 411 | <groupId>log4j</groupId> |
| 412 | <artifactId>log4j</artifactId> |
| 413 | </exclusion> |
| 414 | </exclusions> |
| 415 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 416 | <!-- Quartz --> |
| 417 | <dependency> |
| 418 | <groupId>org.quartz-scheduler</groupId> |
| 419 | <artifactId>quartz</artifactId> |
| 420 | <version>2.2.1</version> |
| 421 | <exclusions> |
| 422 | <!-- SDK brings a new version of c3p0 --> |
| 423 | <exclusion> |
| 424 | <groupId>c3p0</groupId> |
| 425 | <artifactId>c3p0</artifactId> |
| 426 | </exclusion> |
| 427 | </exclusions> |
| 428 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 429 | <dependency> |
| 430 | <groupId>org.bouncycastle</groupId> |
GUJJA | 1376951 | 2018-02-16 11:45:40 -0500 | [diff] [blame] | 431 | <artifactId>bcprov-jdk15on</artifactId> |
| 432 | <version>1.59</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 433 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 434 | <dependency> |
| 435 | <groupId>commons-codec</groupId> |
| 436 | <artifactId>commons-codec</artifactId> |
| 437 | <version>1.9</version> |
| 438 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 439 | <dependency> |
| 440 | <groupId>com.att.nsa</groupId> |
| 441 | <artifactId>cambriaClient</artifactId> |
| 442 | <version>0.0.1</version> |
| 443 | <exclusions> |
| 444 | <exclusion> |
| 445 | <groupId>commons-logging</groupId> |
| 446 | <artifactId>commons-logging</artifactId> |
| 447 | </exclusion> |
| 448 | <exclusion> |
| 449 | <groupId>log4j</groupId> |
| 450 | <artifactId>log4j</artifactId> |
| 451 | </exclusion> |
| 452 | <exclusion> |
| 453 | <groupId>log4j</groupId> |
| 454 | <artifactId>apache-log4j-extras</artifactId> |
| 455 | </exclusion> |
| 456 | <exclusion> |
| 457 | <groupId>org.slf4j</groupId> |
| 458 | <artifactId>slf4j-log4j12</artifactId> |
| 459 | </exclusion> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 460 | <exclusion> |
| 461 | <groupId>org.apache.httpcomponents</groupId> |
| 462 | <artifactId>httpclient</artifactId> |
| 463 | </exclusion> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 464 | </exclusions> |
| 465 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 466 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 467 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 468 | <artifactId>epsdk-fw</artifactId> |
| 469 | <version>${epsdk.version}</version> |
| 470 | <exclusions> |
| 471 | <exclusion> |
| 472 | <groupId>commons-logging</groupId> |
| 473 | <artifactId>commons-logging</artifactId> |
| 474 | </exclusion> |
| 475 | <exclusion> |
| 476 | <groupId>log4j</groupId> |
| 477 | <artifactId>log4j</artifactId> |
| 478 | </exclusion> |
| 479 | <exclusion> |
| 480 | <groupId>log4j</groupId> |
| 481 | <artifactId>apache-log4j-extras</artifactId> |
| 482 | </exclusion> |
| 483 | <exclusion> |
| 484 | <groupId>org.slf4j</groupId> |
| 485 | <artifactId>slf4j-log4j12</artifactId> |
| 486 | </exclusion> |
| 487 | </exclusions> |
| 488 | </dependency> |
| 489 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 490 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 491 | <artifactId>epsdk-core</artifactId> |
| 492 | <version>${epsdk.version}</version> |
| 493 | <exclusions> |
| 494 | <exclusion> |
| 495 | <groupId>mysql</groupId> |
| 496 | <artifactId>mysql-connector-java</artifactId> |
| 497 | </exclusion> |
| 498 | </exclusions> |
| 499 | </dependency> |
| 500 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 501 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 502 | <artifactId>epsdk-app-common</artifactId> |
| 503 | <version>${epsdk.version}</version> |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 504 | <exclusions> |
| 505 | <exclusion> |
| 506 | <groupId>commons-beanutils</groupId> |
| 507 | <artifactId>commons-beanutils-core</artifactId> |
| 508 | </exclusion> |
| 509 | </exclusions> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 510 | </dependency> |
| 511 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 512 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 513 | <artifactId>epsdk-workflow</artifactId> |
| 514 | <version>${epsdk.version}</version> |
| 515 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 516 | <!-- Raptor required Libraries --> |
| 517 | <!-- for static charts --> |
| 518 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 519 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 520 | <artifactId>epsdk-analytics</artifactId> |
| 521 | <version>${epsdk.version}</version> |
| 522 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 523 | <!-- Referenced by some poms and needed for testing; do NOT use "test" |
| 524 | scope here. --> |
| 525 | <dependency> |
| 526 | <groupId>org.apache.httpcomponents</groupId> |
| 527 | <artifactId>httpclient</artifactId> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 528 | <version>4.5.3</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 529 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 530 | <!-- for testing --> |
| 531 | <dependency> |
| 532 | <groupId>junit</groupId> |
| 533 | <artifactId>junit</artifactId> |
| 534 | <version>4.11</version> |
| 535 | <scope>test</scope> |
| 536 | </dependency> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 537 | <dependency> |
| 538 | <groupId>org.powermock</groupId> |
| 539 | <artifactId>powermock-api-mockito</artifactId> |
| 540 | <version>1.6.1</version> |
| 541 | </dependency> |
| 542 | <dependency> |
| 543 | <groupId>org.powermock</groupId> |
| 544 | <artifactId>powermock-core</artifactId> |
| 545 | <version>1.6.1</version> |
| 546 | </dependency> |
| 547 | <dependency> |
| 548 | <groupId>org.powermock</groupId> |
| 549 | <artifactId>powermock-module-junit4</artifactId> |
| 550 | <version>1.6.1</version> |
| 551 | </dependency> |
| 552 | <dependency> |
| 553 | <groupId>org.mockito</groupId> |
| 554 | <artifactId>mockito-core</artifactId> |
| 555 | <version>1.8.5</version> |
| 556 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 557 | <dependency> |
| 558 | <groupId>commons-beanutils</groupId> |
| 559 | <artifactId>commons-beanutils</artifactId> |
Kishore Reddy, Gujja (kg811t) | 8886b47 | 2018-03-23 18:16:50 -0400 | [diff] [blame] | 560 | <version>1.9.3</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 561 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 562 | <dependency> |
| 563 | <groupId>com.ecwid.consul</groupId> |
| 564 | <artifactId>consul-api</artifactId> |
| 565 | <version>1.2.1</version> |
| 566 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 567 | <dependency> |
| 568 | <groupId>com.orbitz.consul</groupId> |
| 569 | <artifactId>consul-client</artifactId> |
| 570 | <version>0.13.8</version> |
| 571 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 572 | <dependency> |
| 573 | <groupId>commons-fileupload</groupId> |
| 574 | <artifactId>commons-fileupload</artifactId> |
Gujja | fadf84a | 2018-03-01 15:57:55 -0500 | [diff] [blame] | 575 | <version>1.3.3</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 576 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 577 | <dependency> |
| 578 | <groupId>io.springfox</groupId> |
| 579 | <artifactId>springfox-swagger2</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 580 | <version>2.7.0</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 581 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 582 | <dependency> |
| 583 | <groupId>io.springfox</groupId> |
| 584 | <artifactId>springfox-swagger-ui</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 585 | <version>2.7.0</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 586 | </dependency> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 587 | <!-- Schedulers required Libraries --> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 588 | <dependency> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 589 | <groupId>com.googlecode.json-simple</groupId> |
| 590 | <artifactId>json-simple</artifactId> |
| 591 | <version>1.1.1</version> |
| 592 | </dependency> |
| 593 | <dependency> |
| 594 | <groupId>org.glassfish.jersey.core</groupId> |
| 595 | <artifactId>jersey-client</artifactId> |
| 596 | <version>2.23.1</version> |
| 597 | </dependency> |
| 598 | <dependency> |
| 599 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 600 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 601 | <version>2.8.10</version> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 602 | </dependency> |
| 603 | <dependency> |
| 604 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 605 | <artifactId>jersey-jetty-connector</artifactId> |
| 606 | <version>2.23.1</version> |
| 607 | </dependency> |
Christopher Lott (cl778h) | b6079b3 | 2017-10-04 14:14:36 -0400 | [diff] [blame] | 608 | <!-- Jacoco for offline instrumentation --> |
| 609 | <dependency> |
| 610 | <groupId>org.jacoco</groupId> |
| 611 | <artifactId>org.jacoco.agent</artifactId> |
| 612 | <version>${jacocoVersion}</version> |
| 613 | <classifier>runtime</classifier> |
| 614 | </dependency> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 615 | <dependency> |
| 616 | <groupId>org.owasp.esapi</groupId> |
| 617 | <artifactId>esapi</artifactId> |
| 618 | <version>2.1.0.1</version> |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 619 | <exclusions> |
| 620 | <exclusion> |
| 621 | <groupId>commons-beanutils</groupId> |
| 622 | <artifactId>commons-beanutils-core</artifactId> |
| 623 | </exclusion> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 624 | <exclusion> |
| 625 | <groupId>commons-httpclient</groupId> |
| 626 | <artifactId>commons-httpclient</artifactId> |
| 627 | </exclusion> |
sa282w | 78224cb | 2018-03-30 14:09:40 -0400 | [diff] [blame] | 628 | <exclusion> |
| 629 | <groupId>org.beanshell</groupId> |
| 630 | <artifactId>bsh-core</artifactId> |
| 631 | </exclusion> |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 632 | </exclusions> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 633 | </dependency> |
| 634 | <dependency> |
| 635 | <groupId>org.springframework.security</groupId> |
| 636 | <artifactId>spring-security-core</artifactId> |
| 637 | <version>${springframework.version}</version> |
| 638 | </dependency> |
| 639 | <dependency> |
| 640 | <groupId>org.springframework.security</groupId> |
| 641 | <artifactId>spring-security-web</artifactId> |
| 642 | <version>${springframework.version}</version> |
| 643 | </dependency> |
| 644 | <dependency> |
| 645 | <groupId>org.springframework.security</groupId> |
| 646 | <artifactId>spring-security-config</artifactId> |
| 647 | <version>${springframework.version}</version> |
| 648 | </dependency> |
Gujja | fadf84a | 2018-03-01 15:57:55 -0500 | [diff] [blame] | 649 | <dependency> |
Gujja | fadf84a | 2018-03-01 15:57:55 -0500 | [diff] [blame] | 650 | <groupId>com.thoughtworks.xstream</groupId> |
| 651 | <artifactId>xstream</artifactId> |
| 652 | <version>1.4.10</version> |
| 653 | </dependency> |
| 654 | <dependency> |
Gujja | fadf84a | 2018-03-01 15:57:55 -0500 | [diff] [blame] | 655 | <groupId>ch.qos.logback</groupId> |
| 656 | <artifactId>logback-core</artifactId> |
| 657 | <version>1.2.3</version> |
| 658 | </dependency> |
| 659 | <dependency> |
| 660 | <groupId>ch.qos.logback</groupId> |
| 661 | <artifactId>logback-classic</artifactId> |
| 662 | <version>1.2.3</version> |
| 663 | </dependency> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 664 | <dependency> |
| 665 | <groupId>commons-collections</groupId> |
| 666 | <artifactId>commons-collections</artifactId> |
| 667 | <version>3.2.2</version> |
| 668 | </dependency> |
| 669 | <dependency> |
| 670 | <groupId>xalan</groupId> |
| 671 | <artifactId>xalan</artifactId> |
| 672 | <version>2.7.2</version> |
| 673 | </dependency> |
Kishore Reddy, Gujja (kg811t) | 2845910 | 2018-05-14 17:19:51 -0400 | [diff] [blame] | 674 | <!-- Music --> |
| 675 | <dependency> |
| 676 | <groupId>org.onap.music</groupId> |
| 677 | <artifactId>MUSIC</artifactId> |
hb123f | a70761c | 2019-03-20 12:20:44 -0400 | [diff] [blame] | 678 | <version>2.5.8</version> |
Kishore Reddy, Gujja (kg811t) | 2845910 | 2018-05-14 17:19:51 -0400 | [diff] [blame] | 679 | <exclusions> |
| 680 | <exclusion> |
| 681 | <groupId>com.sun.jersey</groupId> |
| 682 | <artifactId>jersey-client</artifactId> |
| 683 | </exclusion> |
| 684 | <exclusion> |
| 685 | <groupId>com.sun.jersey</groupId> |
| 686 | <artifactId>jersey-server</artifactId> |
| 687 | </exclusion> |
| 688 | <exclusion> |
| 689 | <groupId>com.sun.jersey</groupId> |
| 690 | <artifactId>jersey-json</artifactId> |
| 691 | </exclusion><exclusion> |
| 692 | <groupId>com.sun.jersey</groupId> |
| 693 | <artifactId>jersey-servlet</artifactId> |
| 694 | </exclusion> |
| 695 | </exclusions> |
| 696 | </dependency> |
| 697 | |
| 698 | <dependency> |
| 699 | <groupId>org.onap.portal.sdk</groupId> |
| 700 | <artifactId>epsdk-music</artifactId> |
| 701 | <version>${epsdk.version}</version> |
| 702 | |
| 703 | <exclusions> |
| 704 | <exclusion> |
| 705 | <groupId>com.sun.jersey</groupId> |
| 706 | <artifactId>jersey-client</artifactId> |
| 707 | </exclusion> |
| 708 | <exclusion> |
| 709 | <groupId>com.sun.jersey</groupId> |
| 710 | <artifactId>jersey-server</artifactId> |
| 711 | </exclusion> |
| 712 | <exclusion> |
| 713 | <groupId>com.sun.jersey</groupId> |
| 714 | <artifactId>jersey-json</artifactId> |
| 715 | </exclusion><exclusion> |
| 716 | <groupId>com.sun.jersey</groupId> |
| 717 | <artifactId>jersey-servlet</artifactId> |
| 718 | </exclusion> |
| 719 | </exclusions> |
| 720 | |
| 721 | |
| 722 | </dependency> |
shentao999 | 7c291e0 | 2019-04-02 10:18:24 +0800 | [diff] [blame^] | 723 | <dependency> |
| 724 | <groupId>org.projectlombok</groupId> |
| 725 | <artifactId>lombok</artifactId> |
| 726 | <version>1.18.4</version> |
| 727 | </dependency> |
| 728 | |
| 729 | <dependency> |
| 730 | <groupId>com.alibaba</groupId> |
| 731 | <artifactId>fastjson</artifactId> |
| 732 | <version>1.2.7</version> |
| 733 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 734 | </dependencies> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 735 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 736 | </project> |