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> |
Muni Mohan Kunchi | fca38e1 | 2020-07-01 09:38:08 -0400 | [diff] [blame] | 8 | <version>3.4.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-os</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) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 15 | <!-- If skipTests is false use this command to generate the report: mvn |
| 16 | clean jacoco:prepare-agent install jacoco:report --> |
Christopher Lott (cl778h) | e43e03d | 2017-08-25 15:31:33 -0400 | [diff] [blame] | 17 | <skipTests>false</skipTests> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 18 | </properties> |
| 19 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 20 | <build> |
| 21 | <sourceDirectory>src/main/java</sourceDirectory> |
| 22 | <!-- The war file name carries no version number --> |
| 23 | <finalName>${project.artifactId}</finalName> |
| 24 | |
| 25 | <plugins> |
| 26 | <plugin> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-site-plugin</artifactId> |
| 29 | <version>3.6</version> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.apache.maven.wagon</groupId> |
| 33 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 34 | <version>2.10</version> |
| 35 | </dependency> |
| 36 | </dependencies> |
| 37 | </plugin> |
| 38 | <plugin> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-surefire-plugin</artifactId> |
| 41 | <version>2.19.1</version> |
| 42 | <configuration> |
| 43 | <skipTests>${skipTests}</skipTests> |
| 44 | <includes> |
| 45 | <include>**/*Test.java</include> |
| 46 | <include>**/*TestCase.java</include> |
| 47 | <inlcude>**/*TestSuite.java</inlcude> |
| 48 | </includes> |
| 49 | <!-- Intentionally Excluding TestFromSuite --> |
| 50 | <excludes> |
| 51 | <exclude>**/*TestFromSuite.java</exclude> |
| 52 | </excludes> |
| 53 | <additionalClasspathElements> |
| 54 | <additionalClasspathElement>${basedir}/src/main/webapp</additionalClasspathElement> |
| 55 | <additionalClasspathElement>../ecomp-portal-BE-common/src/main/webapp</additionalClasspathElement> |
| 56 | <additionalClasspathElement>../ecomp-portal-BE-common</additionalClasspathElement> |
| 57 | </additionalClasspathElements> |
| 58 | <systemPropertyVariables> |
| 59 | <container.classpath>classpath:</container.classpath> |
| 60 | </systemPropertyVariables> |
| 61 | </configuration> |
| 62 | </plugin> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 63 | |
| 64 | <plugin> |
| 65 | <artifactId>maven-war-plugin</artifactId> |
| 66 | <version>2.6</version> |
| 67 | <configuration> |
| 68 | <warSourceDirectory>src/main/webapp</warSourceDirectory> |
| 69 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 70 | <archive> |
| 71 | <manifest> |
| 72 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 73 | </manifest> |
| 74 | <manifestEntries> |
Christopher Lott (cl778h) | 99565bb | 2017-07-10 14:04:15 -0400 | [diff] [blame] | 75 | <Build-Number>${project.version}.${build.number}</Build-Number> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 76 | <Build-Time>${maven.build.timestamp}</Build-Time> |
| 77 | </manifestEntries> |
| 78 | </archive> |
| 79 | <overlays> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 80 | <!-- specify the order in which these should be applied --> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 81 | <overlay> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 82 | <groupId>org.onap.portal</groupId> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 83 | <artifactId>portal-be-common</artifactId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 84 | </overlay> |
Christopher Lott (cl778h) | a0b9152 | 2017-07-31 18:20:49 -0400 | [diff] [blame] | 85 | <overlay> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 86 | <groupId>org.onap.portal.sdk</groupId> |
Christopher Lott (cl778h) | a0b9152 | 2017-07-31 18:20:49 -0400 | [diff] [blame] | 87 | <artifactId>epsdk-app-overlay</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 88 | </overlay> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 89 | </overlays> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | |
Christopher Lott (cl778h) | 31ba5d1 | 2017-07-12 14:28:05 -0400 | [diff] [blame] | 93 | <!-- No deployment step for this project --> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-deploy-plugin</artifactId> |
| 97 | <version>2.8</version> |
| 98 | <configuration> |
| 99 | <skip>true</skip> |
| 100 | </configuration> |
| 101 | </plugin> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 102 | |
| 103 | <plugin> |
| 104 | <artifactId>maven-resources-plugin</artifactId> |
Christopher Lott (cl778h) | f57e82d | 2017-08-24 14:34:31 -0400 | [diff] [blame] | 105 | <version>3.0.2</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 106 | <!-- Your own property files can be placed in ecomp-portal-be/../../overrides |
| 107 | directory and they will override the generic source controlled versions at |
| 108 | build time allowing you to test locally with your own settings. --> |
| 109 | <executions> |
| 110 | <execution> |
| 111 | <id>copy-custom-properties1</id> |
| 112 | <phase>process-resources</phase> |
| 113 | <goals> |
| 114 | <goal>copy-resources</goal> |
| 115 | </goals> |
| 116 | <configuration> |
| 117 | <overwrite>true</overwrite> |
| 118 | <outputDirectory>${basedir}/war/WEB-INF/conf</outputDirectory> |
| 119 | <resources> |
| 120 | <resource> |
| 121 | <directory>${basedir}/../../overrides</directory> |
| 122 | <includes> |
| 123 | <include>system.properties</include> |
| 124 | </includes> |
| 125 | </resource> |
| 126 | </resources> |
| 127 | </configuration> |
| 128 | </execution> |
| 129 | <execution> |
| 130 | <id>copy-custom-properties2</id> |
| 131 | <phase>process-resources</phase> |
| 132 | <goals> |
| 133 | <goal>copy-resources</goal> |
| 134 | </goals> |
| 135 | <configuration> |
| 136 | <overwrite>true</overwrite> |
| 137 | <outputDirectory>${basedir}/war/WEB-INF/fusion/conf</outputDirectory> |
| 138 | <resources> |
| 139 | <resource> |
| 140 | <directory>${basedir}/../../overrides</directory> |
| 141 | <includes> |
| 142 | <include>fusion.properties</include> |
| 143 | </includes> |
| 144 | </resource> |
| 145 | </resources> |
| 146 | </configuration> |
| 147 | </execution> |
| 148 | <execution> |
| 149 | <id>copy-custom-properties3</id> |
| 150 | <phase>process-resources</phase> |
| 151 | <goals> |
| 152 | <goal>copy-resources</goal> |
| 153 | </goals> |
| 154 | <configuration> |
| 155 | <overwrite>true</overwrite> |
| 156 | <outputDirectory>${basedir}/src/main/resources</outputDirectory> |
| 157 | <resources> |
| 158 | <resource> |
| 159 | <directory>${basedir}/../../overrides</directory> |
| 160 | <includes> |
| 161 | <include>portal.properties</include> |
| 162 | <include>openid-connect.properties</include> |
| 163 | <include>openid-keystore.jwks</include> |
| 164 | </includes> |
| 165 | </resource> |
| 166 | </resources> |
| 167 | </configuration> |
| 168 | </execution> |
| 169 | </executions> |
| 170 | </plugin> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 171 | </plugins> |
| 172 | |
| 173 | <testResources> |
| 174 | <testResource> |
| 175 | <directory>src/test/java</directory> |
| 176 | <includes> |
| 177 | <include>**/*Test*.*</include> |
| 178 | </includes> |
| 179 | </testResource> |
| 180 | </testResources> |
| 181 | |
| 182 | <resources> |
| 183 | <resource> |
| 184 | <directory>src/main/resources</directory> |
| 185 | <includes> |
| 186 | <include>**/*.xml</include> |
| 187 | <include>**/*.ccf</include> |
| 188 | <include>**/*.properties</include> |
| 189 | <include>**/*.jwks</include> |
| 190 | </includes> |
| 191 | </resource> |
| 192 | <resource> |
| 193 | <directory>src/test/resources</directory> |
| 194 | <includes> |
| 195 | <include>**/*.xml</include> |
| 196 | <include>**/*.properties</include> |
| 197 | </includes> |
| 198 | </resource> |
| 199 | <!-- picks up the applicationcodes.properties file presented in \src\ |
| 200 | path --> |
| 201 | <resource> |
| 202 | <directory>src/main/java</directory> |
| 203 | <includes> |
| 204 | <include>**/*.xml</include> |
| 205 | <include>**/*.properties</include> |
| 206 | </includes> |
| 207 | </resource> |
| 208 | </resources> |
| 209 | |
| 210 | </build> |
| 211 | |
| 212 | <dependencies> |
Sri Balaji Marripud | 0f6b320 | 2020-09-04 09:20:06 -0400 | [diff] [blame] | 213 | <dependency> |
| 214 | <groupId>com.fasterxml.jackson.core</groupId> |
| 215 | <artifactId>jackson-core</artifactId> |
| 216 | <version>2.11.0</version> |
Sri Balaji Marripud | 42ad14c | 2020-09-07 17:33:30 -0400 | [diff] [blame^] | 217 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 218 | <!-- Spring --> |
| 219 | <dependency> |
| 220 | <groupId>org.springframework</groupId> |
| 221 | <artifactId>spring-core</artifactId> |
| 222 | <version>${springframework.version}</version> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>org.springframework</groupId> |
| 226 | <artifactId>spring-web</artifactId> |
| 227 | <version>${springframework.version}</version> |
| 228 | </dependency> |
| 229 | <dependency> |
| 230 | <groupId>org.springframework</groupId> |
| 231 | <artifactId>spring-webmvc</artifactId> |
| 232 | <version>${springframework.version}</version> |
| 233 | </dependency> |
| 234 | <dependency> |
| 235 | <groupId>org.springframework</groupId> |
| 236 | <artifactId>spring-tx</artifactId> |
| 237 | <version>${springframework.version}</version> |
| 238 | </dependency> |
Sudarshan Kumar | d7c3aae | 2020-03-12 14:27:57 +0530 | [diff] [blame] | 239 | <dependency> |
| 240 | <groupId>org.springframework</groupId> |
| 241 | <artifactId>spring-expression</artifactId> |
| 242 | <version>${springframework.version}</version> |
| 243 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 244 | <dependency> |
| 245 | <groupId>org.springframework</groupId> |
| 246 | <artifactId>spring-context-support</artifactId> |
| 247 | <version>${springframework.version}</version> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>org.springframework</groupId> |
| 251 | <artifactId>spring-orm</artifactId> |
| 252 | <version>${springframework.version}</version> |
| 253 | </dependency> |
| 254 | <dependency> |
| 255 | <groupId>org.springframework</groupId> |
| 256 | <artifactId>spring-test</artifactId> |
| 257 | <version>${springframework.version}</version> |
| 258 | </dependency> |
jz385p | cfc431e | 2020-06-03 12:50:14 +0530 | [diff] [blame] | 259 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 260 | <!-- Hibernate --> |
| 261 | <dependency> |
| 262 | <groupId>org.hibernate</groupId> |
| 263 | <artifactId>hibernate-core</artifactId> |
| 264 | <version>${hibernate.version}</version> |
| 265 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 266 | <dependency> |
| 267 | <groupId>org.hibernate</groupId> |
| 268 | <artifactId>hibernate-validator</artifactId> |
Sri Balaji Marripud | 42ad14c | 2020-09-07 17:33:30 -0400 | [diff] [blame^] | 269 | <version>5.4.3.Final</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 270 | </dependency> |
Sri Balaji Marripud | 42ad14c | 2020-09-07 17:33:30 -0400 | [diff] [blame^] | 271 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 272 | <!-- Servlet+JSP+JSTL --> |
| 273 | <dependency> |
| 274 | <groupId>javax.servlet</groupId> |
| 275 | <artifactId>javax.servlet-api</artifactId> |
| 276 | <version>3.1.0</version> |
| 277 | </dependency> |
| 278 | <dependency> |
| 279 | <groupId>javax.servlet.jsp</groupId> |
| 280 | <artifactId>javax.servlet.jsp-api</artifactId> |
| 281 | <version>2.3.1</version> |
| 282 | </dependency> |
| 283 | <dependency> |
GUJJA | 1376951 | 2018-02-16 11:45:40 -0500 | [diff] [blame] | 284 | <groupId>org.apache.taglibs</groupId> |
| 285 | <artifactId>taglibs-standard-spec</artifactId> |
| 286 | <version>1.2.5</version> |
| 287 | </dependency> |
| 288 | <dependency> |
| 289 | <groupId>org.apache.taglibs</groupId> |
| 290 | <artifactId>taglibs-standard-impl</artifactId> |
| 291 | <version>1.2.5</version> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>org.apache.taglibs</groupId> |
| 295 | <artifactId>taglibs-standard-jstlel</artifactId> |
| 296 | <version>1.2.5</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 297 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 298 | <!-- Apache Tiles --> |
| 299 | <dependency> |
| 300 | <groupId>org.apache.tiles</groupId> |
| 301 | <artifactId>tiles-core</artifactId> |
| 302 | <version>3.0.5</version> |
| 303 | </dependency> |
| 304 | <dependency> |
| 305 | <groupId>org.apache.tiles</groupId> |
| 306 | <artifactId>tiles-jsp</artifactId> |
| 307 | <version>3.0.5</version> |
| 308 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 309 | <!-- Mapper --> |
jz385p | cfc431e | 2020-06-03 12:50:14 +0530 | [diff] [blame] | 310 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 311 | <dependency> |
| 312 | <groupId>com.fasterxml</groupId> |
| 313 | <artifactId>classmate</artifactId> |
| 314 | <version>1.3.1</version> |
| 315 | </dependency> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 316 | <!-- Use Mariadb connector/j for failover --> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 317 | <dependency> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 318 | <groupId>org.mariadb.jdbc</groupId> |
| 319 | <artifactId>mariadb-java-client</artifactId> |
| 320 | <version>1.5.8</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 321 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 322 | <!-- Elastic Search --> |
| 323 | <dependency> |
| 324 | <groupId>org.elasticsearch</groupId> |
| 325 | <artifactId>elasticsearch</artifactId> |
Sri Balaji Marripud | 42ad14c | 2020-09-07 17:33:30 -0400 | [diff] [blame^] | 326 | <version>7.6.1</version> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 327 | <exclusions> |
| 328 | <exclusion> |
| 329 | <groupId>org.apache.lucene</groupId> |
| 330 | <artifactId>lucene-queryparser</artifactId> |
| 331 | </exclusion> |
Sri Balaji Marripud | 0f6b320 | 2020-09-04 09:20:06 -0400 | [diff] [blame] | 332 | <exclusion> |
| 333 | <groupId>com.fasterxml.jackson.core</groupId> |
| 334 | <artifactId>jackson-core</artifactId> |
| 335 | </exclusion> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 336 | </exclusions> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 337 | </dependency> |
| 338 | <dependency> |
| 339 | <groupId>io.searchbox</groupId> |
| 340 | <artifactId>jest</artifactId> |
| 341 | <version>2.0.0</version> |
| 342 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 343 | <dependency> |
| 344 | <groupId>org.apache.jcs</groupId> |
| 345 | <artifactId>jcs</artifactId> |
| 346 | <version>1.3</version> |
| 347 | <exclusions> |
| 348 | <exclusion> |
| 349 | <groupId>*</groupId> |
| 350 | <artifactId>*</artifactId> |
| 351 | </exclusion> |
| 352 | </exclusions> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 353 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 354 | <dependency> |
| 355 | <groupId>org.apache.tomcat</groupId> |
| 356 | <artifactId>tomcat-websocket</artifactId> |
| 357 | <version>8.0.28</version> |
| 358 | <scope>provided</scope> |
| 359 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 360 | <!-- Raptor required Libraries --> |
| 361 | <!-- for static charts --> |
| 362 | <dependency> |
| 363 | <groupId>commons-lang</groupId> |
| 364 | <artifactId>commons-lang</artifactId> |
| 365 | <version>2.6</version> |
| 366 | </dependency> |
| 367 | <!-- for generating excel/csv/excelx --> |
| 368 | <dependency> |
| 369 | <groupId>org.apache.poi</groupId> |
| 370 | <artifactId>poi</artifactId> |
Sri Balaji Marripud | 0f6b320 | 2020-09-04 09:20:06 -0400 | [diff] [blame] | 371 | <version>4.1.2</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 372 | <exclusions> |
| 373 | <exclusion> |
| 374 | <groupId>commons-logging</groupId> |
| 375 | <artifactId>commons-logging</artifactId> |
| 376 | </exclusion> |
| 377 | <exclusion> |
| 378 | <groupId>log4j</groupId> |
| 379 | <artifactId>log4j</artifactId> |
| 380 | </exclusion> |
| 381 | </exclusions> |
| 382 | </dependency> |
| 383 | <dependency> |
| 384 | <groupId>org.apache.poi</groupId> |
| 385 | <artifactId>poi-ooxml</artifactId> |
Sri Balaji Marripud | 42ad14c | 2020-09-07 17:33:30 -0400 | [diff] [blame^] | 386 | <version>4.1.2</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 387 | <exclusions> |
| 388 | <exclusion> |
| 389 | <groupId>commons-logging</groupId> |
| 390 | <artifactId>commons-logging</artifactId> |
| 391 | </exclusion> |
| 392 | <exclusion> |
| 393 | <groupId>log4j</groupId> |
| 394 | <artifactId>log4j</artifactId> |
| 395 | </exclusion> |
| 396 | </exclusions> |
| 397 | </dependency> |
| 398 | <dependency> |
| 399 | <groupId>org.apache.poi</groupId> |
| 400 | <artifactId>poi-scratchpad</artifactId> |
Sri Balaji Marripud | 42ad14c | 2020-09-07 17:33:30 -0400 | [diff] [blame^] | 401 | <version>4.1.2</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 402 | <exclusions> |
| 403 | <exclusion> |
| 404 | <groupId>commons-logging</groupId> |
| 405 | <artifactId>commons-logging</artifactId> |
| 406 | </exclusion> |
| 407 | <exclusion> |
| 408 | <groupId>log4j</groupId> |
| 409 | <artifactId>log4j</artifactId> |
| 410 | </exclusion> |
| 411 | </exclusions> |
| 412 | </dependency> |
| 413 | <dependency> |
| 414 | <groupId>org.apache.poi</groupId> |
| 415 | <artifactId>poi-contrib</artifactId> |
| 416 | <version>3.5-FINAL</version> |
| 417 | <exclusions> |
| 418 | <exclusion> |
| 419 | <groupId>commons-logging</groupId> |
| 420 | <artifactId>commons-logging</artifactId> |
| 421 | </exclusion> |
| 422 | <exclusion> |
| 423 | <groupId>log4j</groupId> |
| 424 | <artifactId>log4j</artifactId> |
| 425 | </exclusion> |
| 426 | </exclusions> |
| 427 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 428 | <!-- Quartz --> |
| 429 | <dependency> |
| 430 | <groupId>org.quartz-scheduler</groupId> |
| 431 | <artifactId>quartz</artifactId> |
Sudarshan Kumar | 8e83c25 | 2020-02-18 16:16:26 +0530 | [diff] [blame] | 432 | <version>2.3.2</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 433 | <exclusions> |
| 434 | <!-- SDK brings a new version of c3p0 --> |
| 435 | <exclusion> |
| 436 | <groupId>c3p0</groupId> |
| 437 | <artifactId>c3p0</artifactId> |
| 438 | </exclusion> |
| 439 | </exclusions> |
| 440 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 441 | <dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 442 | <groupId>com.att.nsa</groupId> |
| 443 | <artifactId>cambriaClient</artifactId> |
| 444 | <version>0.0.1</version> |
| 445 | <exclusions> |
| 446 | <exclusion> |
| 447 | <groupId>commons-logging</groupId> |
| 448 | <artifactId>commons-logging</artifactId> |
| 449 | </exclusion> |
| 450 | <exclusion> |
| 451 | <groupId>log4j</groupId> |
| 452 | <artifactId>log4j</artifactId> |
| 453 | </exclusion> |
| 454 | <exclusion> |
| 455 | <groupId>log4j</groupId> |
| 456 | <artifactId>apache-log4j-extras</artifactId> |
| 457 | </exclusion> |
| 458 | <exclusion> |
| 459 | <groupId>org.slf4j</groupId> |
| 460 | <artifactId>slf4j-log4j12</artifactId> |
| 461 | </exclusion> |
| 462 | </exclusions> |
| 463 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 464 | <!-- SDK overlay war --> |
| 465 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 466 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 467 | <artifactId>epsdk-app-overlay</artifactId> |
| 468 | <version>${epsdk.version}</version> |
| 469 | <type>war</type> |
| 470 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 471 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 472 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 473 | <artifactId>epsdk-app-common</artifactId> |
| 474 | <version>${epsdk.version}</version> |
| 475 | <type>jar</type> |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 476 | <exclusions> |
Sudarshan Kumar | 8e83c25 | 2020-02-18 16:16:26 +0530 | [diff] [blame] | 477 | <exclusion> |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 478 | <groupId>commons-beanutils</groupId> |
| 479 | <artifactId>commons-beanutils-core</artifactId> |
Sudarshan Kumar | 8e83c25 | 2020-02-18 16:16:26 +0530 | [diff] [blame] | 480 | </exclusion> |
| 481 | <exclusion> |
| 482 | <groupId>org.owasp.esapi</groupId> |
| 483 | <artifactId>esapi</artifactId> |
| 484 | </exclusion> |
| 485 | <exclusion> |
| 486 | <groupId>com.mchange</groupId> |
| 487 | <artifactId>c3p0</artifactId> |
| 488 | </exclusion> |
| 489 | </exclusions> |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 490 | |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 491 | </dependency> |
Sudarshan Kumar | 8e83c25 | 2020-02-18 16:16:26 +0530 | [diff] [blame] | 492 | <dependency> |
| 493 | <groupId>org.owasp.esapi</groupId> |
| 494 | <artifactId>esapi</artifactId> |
| 495 | <version>2.2.0.0</version> |
| 496 | </dependency> |
| 497 | <dependency> |
| 498 | <groupId>com.mchange</groupId> |
| 499 | <artifactId>c3p0</artifactId> |
| 500 | <version>0.9.5.4</version> |
| 501 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 502 | <!-- EcompPortal common overlay --> |
| 503 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 504 | <groupId>org.onap.portal</groupId> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 505 | <artifactId>portal-be-common</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 506 | <version>${project.version}</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 507 | <type>war</type> |
| 508 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 509 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 510 | <groupId>org.onap.portal</groupId> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 511 | <artifactId>portal-be-common</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 512 | <version>${project.version}</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 513 | <type>jar</type> |
| 514 | <classifier>classes</classifier> |
| 515 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 516 | <dependency> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 517 | <groupId>org.onap.portal</groupId> |
| 518 | <artifactId>portal-be-common</artifactId> |
| 519 | <version>${project.version}</version> |
| 520 | <type>jar</type> |
| 521 | <classifier>tests</classifier> |
| 522 | <scope>test</scope> |
| 523 | </dependency> |
| 524 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 525 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 526 | <artifactId>epsdk-fw</artifactId> |
| 527 | <version>${epsdk.version}</version> |
| 528 | <exclusions> |
| 529 | <exclusion> |
| 530 | <groupId>commons-logging</groupId> |
| 531 | <artifactId>commons-logging</artifactId> |
| 532 | </exclusion> |
| 533 | <exclusion> |
| 534 | <groupId>log4j</groupId> |
| 535 | <artifactId>log4j</artifactId> |
| 536 | </exclusion> |
| 537 | <exclusion> |
| 538 | <groupId>log4j</groupId> |
| 539 | <artifactId>apache-log4j-extras</artifactId> |
| 540 | </exclusion> |
| 541 | <exclusion> |
| 542 | <groupId>org.slf4j</groupId> |
| 543 | <artifactId>slf4j-log4j12</artifactId> |
| 544 | </exclusion> |
| 545 | </exclusions> |
| 546 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 547 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 548 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 549 | <artifactId>epsdk-core</artifactId> |
| 550 | <version>${epsdk.version}</version> |
| 551 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 552 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 553 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 554 | <artifactId>epsdk-workflow</artifactId> |
| 555 | <version>${epsdk.version}</version> |
| 556 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 557 | <!-- Raptor required Libraries --> |
| 558 | <!-- for static charts --> |
| 559 | <dependency> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 560 | <groupId>org.onap.portal.sdk</groupId> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 561 | <artifactId>epsdk-analytics</artifactId> |
| 562 | <version>${epsdk.version}</version> |
| 563 | </dependency> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 564 | <dependency> |
| 565 | <groupId>org.json</groupId> |
| 566 | <artifactId>json</artifactId> |
| 567 | <version>20171018</version> |
| 568 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 569 | <!-- Referenced by some poms and needed for testing; do NOT use "test" |
| 570 | scope here. --> |
| 571 | <dependency> |
| 572 | <groupId>org.apache.httpcomponents</groupId> |
| 573 | <artifactId>httpclient</artifactId> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 574 | <version>4.5.3</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 575 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 576 | <!-- for testing --> |
| 577 | <dependency> |
| 578 | <groupId>junit</groupId> |
| 579 | <artifactId>junit</artifactId> |
| 580 | <version>4.11</version> |
| 581 | <scope>test</scope> |
| 582 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 583 | <dependency> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 584 | <groupId>org.powermock</groupId> |
| 585 | <artifactId>powermock-api-mockito</artifactId> |
| 586 | <version>1.6.1</version> |
| 587 | </dependency> |
| 588 | <dependency> |
| 589 | <groupId>org.powermock</groupId> |
| 590 | <artifactId>powermock-core</artifactId> |
| 591 | <version>1.6.1</version> |
| 592 | </dependency> |
| 593 | <dependency> |
| 594 | <groupId>org.powermock</groupId> |
| 595 | <artifactId>powermock-module-junit4</artifactId> |
| 596 | <version>1.6.1</version> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 597 | </dependency> |
| 598 | <dependency> |
| 599 | <groupId>org.mockito</groupId> |
| 600 | <artifactId>mockito-core</artifactId> |
| 601 | <version>1.8.5</version> |
| 602 | <scope>test</scope> |
| 603 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 604 | <!-- OpenID Connect Dependencies --> |
| 605 | <dependency> |
| 606 | <groupId>org.mitre</groupId> |
| 607 | <artifactId>openid-connect-client</artifactId> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 608 | <version>1.3.1</version> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 609 | <exclusions> |
| 610 | <exclusion> |
| 611 | <groupId>org.codehaus.jackson</groupId> |
| 612 | <artifactId>jackson-mapper-asl</artifactId> |
| 613 | </exclusion> |
sa282w | 78224cb | 2018-03-30 14:09:40 -0400 | [diff] [blame] | 614 | <exclusion> |
| 615 | <groupId>com.nimbusds</groupId> |
| 616 | <artifactId>nimbus-jose-jwt</artifactId> |
| 617 | </exclusion> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 618 | </exclusions> |
| 619 | </dependency> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 620 | <!-- <dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 621 | <groupId>org.springframework.security</groupId> |
| 622 | <artifactId>spring-security-taglibs</artifactId> |
| 623 | <version>3.2.8.RELEASE</version> |
| 624 | <exclusions> |
| 625 | <exclusion> |
| 626 | <groupId>org.springframework</groupId> |
| 627 | <artifactId>*</artifactId> |
| 628 | </exclusion> |
| 629 | </exclusions> |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 630 | </dependency> --> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 631 | <dependency> |
| 632 | <groupId>org.aspectj</groupId> |
| 633 | <artifactId>aspectjrt</artifactId> |
| 634 | <version>1.8.9</version> |
| 635 | </dependency> |
| 636 | <dependency> |
| 637 | <groupId>org.aspectj</groupId> |
| 638 | <artifactId>aspectjweaver</artifactId> |
| 639 | <version>1.8.9</version> |
| 640 | </dependency> |
Christopher Lott (cl778h) | b6079b3 | 2017-10-04 14:14:36 -0400 | [diff] [blame] | 641 | <!-- Jacoco for offline instrumentation --> |
| 642 | <dependency> |
| 643 | <groupId>org.jacoco</groupId> |
| 644 | <artifactId>org.jacoco.agent</artifactId> |
| 645 | <version>${jacocoVersion}</version> |
| 646 | <classifier>runtime</classifier> |
| 647 | </dependency> |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 648 | <!-- Music --> |
| 649 | <dependency> |
| 650 | <groupId>org.onap.portal.sdk</groupId> |
| 651 | <artifactId>epsdk-music</artifactId> |
| 652 | <version>${epsdk.version}</version> |
Kishore Reddy, Gujja (kg811t) | 2845910 | 2018-05-14 17:19:51 -0400 | [diff] [blame] | 653 | |
| 654 | <exclusions> |
| 655 | <exclusion> |
| 656 | <groupId>com.sun.jersey</groupId> |
| 657 | <artifactId>jersey-client</artifactId> |
| 658 | </exclusion> |
| 659 | <exclusion> |
| 660 | <groupId>com.sun.jersey</groupId> |
| 661 | <artifactId>jersey-server</artifactId> |
| 662 | </exclusion> |
| 663 | <exclusion> |
| 664 | <groupId>com.sun.jersey</groupId> |
| 665 | <artifactId>jersey-json</artifactId> |
| 666 | </exclusion><exclusion> |
| 667 | <groupId>com.sun.jersey</groupId> |
| 668 | <artifactId>jersey-servlet</artifactId> |
| 669 | </exclusion> |
| 670 | </exclusions> |
sa282w | 78224cb | 2018-03-30 14:09:40 -0400 | [diff] [blame] | 671 | </dependency> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 672 | </dependencies> |
Christopher Lott (cl778h) | 52ef947 | 2017-08-30 16:09:59 -0400 | [diff] [blame] | 673 | |
| 674 | <reporting> |
| 675 | <plugins> |
| 676 | <plugin> |
| 677 | <groupId>org.apache.maven.plugins</groupId> |
| 678 | <artifactId>maven-javadoc-plugin</artifactId> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 679 | <version>3.0.0-M1</version> |
Christopher Lott (cl778h) | 52ef947 | 2017-08-30 16:09:59 -0400 | [diff] [blame] | 680 | <configuration> |
| 681 | <failOnError>false</failOnError> |
| 682 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 683 | <docletArtifact> |
| 684 | <groupId>org.umlgraph</groupId> |
| 685 | <artifactId>umlgraph</artifactId> |
| 686 | <version>5.6</version> |
| 687 | </docletArtifact> |
| 688 | <additionalparam>-views</additionalparam> |
| 689 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 690 | </configuration> |
| 691 | </plugin> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 692 | |
Christopher Lott (cl778h) | 52ef947 | 2017-08-30 16:09:59 -0400 | [diff] [blame] | 693 | </plugins> |
| 694 | </reporting> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 695 | </project> |