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