biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 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> |
| 5 | |
| 6 | <!-- This is the Maven project object model (POM) file for the open-source |
| 7 | SDK web app. This is NOT the Portal - but it is developed and supported by |
| 8 | the Portal team. --> |
| 9 | <groupId>org.onap.vid</groupId> |
| 10 | <artifactId>epsdk-app-onap</artifactId> |
Ittay Stern | 8fde9d5 | 2020-05-07 06:58:20 +0300 | [diff] [blame] | 11 | <version>7.0.0-SNAPSHOT</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 12 | <packaging>war</packaging> |
| 13 | <name>ECOMP SDK Webapp for OpenSource</name> |
| 14 | <description>ECOMP SDK Web Application for public release</description> |
| 15 | |
Ittay Stern | 9f9e9b2 | 2019-02-28 12:09:45 +0200 | [diff] [blame] | 16 | <parent> |
| 17 | <groupId>org.onap.oparent</groupId> |
| 18 | <artifactId>oparent</artifactId> |
Ittay Stern | 6c2d093 | 2019-12-15 18:33:18 +0200 | [diff] [blame] | 19 | <version>2.1.0</version> |
Ittay Stern | 9f9e9b2 | 2019-02-28 12:09:45 +0200 | [diff] [blame] | 20 | <relativePath/> |
| 21 | </parent> |
| 22 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 23 | <properties> |
| 24 | <encoding>UTF-8</encoding> |
| 25 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 26 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
Ittay Stern | 68803a2 | 2020-01-20 21:46:47 +0200 | [diff] [blame] | 27 | <epsdk.version>2.6.0</epsdk.version> |
| 28 | <epsdk.overlay.version>2.5.0</epsdk.overlay.version> |
Ittay Stern | 0f8e77d | 2020-02-24 13:55:38 +0200 | [diff] [blame] | 29 | <jaxb.version>2.3.2</jaxb.version> |
Ittay Stern | 759686a | 2020-02-26 18:22:30 +0200 | [diff] [blame] | 30 | <jackson.version>2.10.2</jackson.version> |
| 31 | <jackson.databind.version>2.10.2</jackson.databind.version> |
Amichai Hemli | 2ca9ef3 | 2020-02-02 15:46:13 +0200 | [diff] [blame] | 32 | <springframework.version>5.2.3.RELEASE</springframework.version> |
Einat Vinouze | d719259 | 2019-07-07 14:15:07 +0300 | [diff] [blame] | 33 | <!-- epsdk-core is importing this class, which is only on spring-orm 4 but not in orm 5: |
| 34 | org.springframework.orm.hibernate4.HibernateTransactionManager |
| 35 | so following orm.version lets epsdk-core find it --> |
| 36 | <springframework.orm.version>4.3.22.RELEASE</springframework.orm.version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 37 | <hibernate.version>4.3.11.Final</hibernate.version> |
| 38 | <!-- Skip assembling the zip; assemble via mvn -Dskipassembly=false .. --> |
| 39 | <skipassembly>true</skipassembly> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 40 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 41 | <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> |
| 42 | <releaseNexusPath>content/repositories/releases/</releaseNexusPath> |
| 43 | <stagingNexusPath>content/repositories/staging/</stagingNexusPath> |
| 44 | <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 45 | |
| 46 | <!-- SONAR --> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 47 | <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> |
Ittay Stern | 67a23ab | 2019-02-25 19:21:32 +0200 | [diff] [blame] | 48 | <sonar.surefire.reportPaths>${project.build.directory}/surefire-reports</sonar.surefire.reportPaths> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 49 | <sonar.projectVersion>${project.version}</sonar.projectVersion> |
Ittay Stern | 67a23ab | 2019-02-25 19:21:32 +0200 | [diff] [blame] | 50 | <!-- ignore all .js files on sonar coverage report --> |
Ittay Stern | eda8140 | 2019-02-26 06:32:43 +0200 | [diff] [blame] | 51 | <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 52 | </properties> |
| 53 | |
| 54 | <repositories> |
| 55 | <repository> |
| 56 | <id>ecomp-releases</id> |
| 57 | <name>VID Release Repository</name> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 58 | <url>${nexusproxy}/${releaseNexusPath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 59 | </repository> |
| 60 | <repository> |
| 61 | <id>ecomp-snapshots</id> |
| 62 | <name>VID Snapshot Repository</name> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 63 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 64 | </repository> |
| 65 | <repository> |
| 66 | <id>ecomp-staging</id> |
| 67 | <name>VID Staging Repository</name> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 68 | <url>${nexusproxy}/${stagingNexusPath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 69 | </repository> |
| 70 | <repository> |
| 71 | <!-- Snapshots repository has ECOMP snapshot artifacts --> |
| 72 | <id>oss-snapshots</id> |
| 73 | <name>oss Central - Snapshots</name> |
| 74 | <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> |
| 75 | </repository> |
| 76 | </repositories> |
| 77 | <distributionManagement> |
| 78 | <repository> |
| 79 | <id>ecomp-releases</id> |
| 80 | <name>VID Release Repository</name> |
| 81 | <url>${nexusproxy}/${releaseNexusPath}</url> |
| 82 | </repository> |
| 83 | <snapshotRepository> |
| 84 | <id>ecomp-snapshots</id> |
| 85 | <name>VID Snapshot Repository</name> |
| 86 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
| 87 | </snapshotRepository> |
| 88 | <!-- added for javadoc --> |
| 89 | <site> |
| 90 | <id>ecomp-site</id> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 91 | <url>dav:${nexusproxy}/${sitePath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 92 | </site> |
| 93 | </distributionManagement> |
| 94 | |
| 95 | <profiles> |
| 96 | <!-- disable doclint, a new feature in Java 8, when generating javadoc --> |
| 97 | <profile> |
| 98 | <id>doclint-java8-disable</id> |
| 99 | <activation> |
| 100 | <jdk>[1.8,)</jdk> |
| 101 | </activation> |
| 102 | <build> |
| 103 | <plugins> |
| 104 | <plugin> |
| 105 | <groupId>org.apache.maven.plugins</groupId> |
| 106 | <artifactId>maven-javadoc-plugin</artifactId> |
| 107 | <version>2.10.4</version> |
| 108 | <configuration> |
| 109 | <additionalparam>-Xdoclint:none</additionalparam> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | </plugins> |
| 113 | </build> |
| 114 | </profile> |
| 115 | </profiles> |
| 116 | |
| 117 | <build> |
| 118 | <finalName>vid</finalName> |
| 119 | <plugins> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 120 | <!-- Compile to Java 1.8 class output format --> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.maven.plugins</groupId> |
| 123 | <artifactId>maven-compiler-plugin</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 124 | <version>3.8.1</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 125 | <configuration> |
| 126 | <source>1.8</source> |
| 127 | <target>1.8</target> |
| 128 | </configuration> |
| 129 | </plugin> |
| 130 | |
| 131 | <plugin> |
| 132 | <groupId>org.apache.maven.plugins</groupId> |
| 133 | <artifactId>maven-surefire-plugin</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 134 | <version>2.22.2</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 135 | <configuration> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 136 | <includes> |
| 137 | <include>**/Test*.java</include> |
| 138 | <include>**/*Test.java</include> |
| 139 | <include>**/*TestCase.java</include> |
| 140 | </includes> |
| 141 | <additionalClasspathElements> |
| 142 | <additionalClasspathElement>${basedir}/war</additionalClasspathElement> |
| 143 | </additionalClasspathElements> |
| 144 | <systemPropertyVariables> |
| 145 | <container.classpath>classpath:</container.classpath> |
| 146 | </systemPropertyVariables> |
| 147 | <useSystemClassLoader>false</useSystemClassLoader> |
Einat Vinouze | f486e80 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 148 | <properties> |
| 149 | <property> |
| 150 | <name>usedefaultlisteners</name> |
| 151 | <value>false</value> |
| 152 | </property> |
| 153 | </properties> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 154 | </configuration> |
| 155 | </plugin> |
| 156 | |
| 157 | <!-- add version number to manifest --> |
| 158 | <plugin> |
| 159 | <groupId>org.apache.maven.plugins</groupId> |
| 160 | <artifactId>maven-war-plugin</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 161 | <version>3.2.3</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 162 | <configuration> |
| 163 | <archive> |
| 164 | <manifest> |
| 165 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 166 | </manifest> |
| 167 | <manifestEntries> |
| 168 | <Build-Number>${project.version}</Build-Number> |
| 169 | <Build-Time>${maven.build.timestamp}</Build-Time> |
| 170 | </manifestEntries> |
| 171 | </archive> |
| 172 | <overlays> |
| 173 | <overlay> |
| 174 | <groupId>org.onap.vid</groupId> |
| 175 | <artifactId>vid-app-common</artifactId> |
| 176 | </overlay> |
| 177 | <overlay> |
| 178 | <groupId>org.onap.portal.sdk</groupId> |
| 179 | <artifactId>epsdk-app-overlay</artifactId> |
| 180 | </overlay> |
Ittay Stern | 5f45846 | 2019-07-11 12:08:03 +0300 | [diff] [blame] | 181 | <overlay> |
| 182 | <groupId>org.onap.vid</groupId> |
| 183 | <artifactId>vid-webpack-master</artifactId> |
| 184 | </overlay> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 185 | </overlays> |
| 186 | </configuration> |
| 187 | </plugin> |
| 188 | |
| 189 | <plugin> |
| 190 | <groupId>org.apache.maven.plugins</groupId> |
| 191 | <artifactId>maven-assembly-plugin</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 192 | <version>3.2.0</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 193 | <configuration> |
| 194 | <skipAssembly>${skipassembly}</skipAssembly> |
| 195 | <descriptors> |
| 196 | <descriptor>${basedir}/distribution.xml</descriptor> |
| 197 | </descriptors> |
| 198 | </configuration> |
| 199 | <executions> |
| 200 | <execution> |
| 201 | <id>make-assembly</id> |
| 202 | <phase>package</phase> |
| 203 | <goals> |
| 204 | <goal>single</goal> |
| 205 | </goals> |
| 206 | </execution> |
| 207 | </executions> |
| 208 | </plugin> |
| 209 | <plugin> |
| 210 | <groupId>org.apache.maven.plugins</groupId> |
| 211 | <artifactId>maven-site-plugin</artifactId> |
| 212 | <version>3.6</version> |
| 213 | <dependencies> |
| 214 | <dependency> |
| 215 | <groupId>org.apache.maven.wagon</groupId> |
| 216 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 217 | <version>2.10</version> |
| 218 | </dependency> |
| 219 | </dependencies> |
| 220 | </plugin> |
| 221 | <plugin> |
Ittay Stern | 6c8df5b | 2019-08-05 21:21:02 +0300 | [diff] [blame] | 222 | <groupId>org.sonarsource.scanner.maven</groupId> |
| 223 | <artifactId>sonar-maven-plugin</artifactId> |
| 224 | <version>3.6.0.1398</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 225 | </plugin> |
| 226 | <plugin> |
| 227 | <groupId>org.jacoco</groupId> |
| 228 | <artifactId>jacoco-maven-plugin</artifactId> |
Ittay Stern | 6c8df5b | 2019-08-05 21:21:02 +0300 | [diff] [blame] | 229 | <version>0.8.4</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 230 | <executions> |
| 231 | <execution> |
| 232 | <id>default-prepare-agent</id> |
| 233 | <goals> |
| 234 | <goal>prepare-agent</goal> |
| 235 | </goals> |
| 236 | </execution> |
| 237 | <execution> |
| 238 | <id>default-report</id> |
| 239 | <goals> |
| 240 | <goal>report</goal> |
| 241 | </goals> |
| 242 | </execution> |
| 243 | </executions> |
| 244 | </plugin> |
| 245 | |
| 246 | </plugins> |
| 247 | </build> |
| 248 | |
| 249 | <reporting> |
| 250 | <plugins> |
| 251 | <plugin> |
| 252 | <groupId>org.apache.maven.plugins</groupId> |
| 253 | <artifactId>maven-javadoc-plugin</artifactId> |
| 254 | <version>2.10.4</version> |
| 255 | <configuration> |
| 256 | <failOnError>false</failOnError> |
| 257 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 258 | <docletArtifact> |
| 259 | <groupId>org.umlgraph</groupId> |
| 260 | <artifactId>umlgraph</artifactId> |
| 261 | <version>5.6</version> |
| 262 | </docletArtifact> |
| 263 | <additionalparam>-views</additionalparam> |
| 264 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 265 | </configuration> |
| 266 | </plugin> |
| 267 | </plugins> |
| 268 | </reporting> |
| 269 | <dependencies> |
| 270 | <!-- SDK overlay war --> |
| 271 | <dependency> |
| 272 | <groupId>org.onap.portal.sdk</groupId> |
| 273 | <artifactId>epsdk-app-overlay</artifactId> |
Ittay Stern | 68803a2 | 2020-01-20 21:46:47 +0200 | [diff] [blame] | 274 | <version>${epsdk.overlay.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 275 | <type>war</type> |
| 276 | </dependency> |
| 277 | <dependency> |
| 278 | <groupId>org.onap.portal.sdk</groupId> |
| 279 | <artifactId>epsdk-app-common</artifactId> |
| 280 | <version>${epsdk.version}</version> |
| 281 | <type>jar</type> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 282 | </dependency> |
| 283 | <dependency> |
| 284 | <groupId>org.onap.vid</groupId> |
| 285 | <artifactId>vid-app-common</artifactId> |
| 286 | <version>${project.version}</version> |
| 287 | <type>war</type> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 288 | </dependency> |
| 289 | <dependency> |
| 290 | <groupId>org.onap.vid</groupId> |
| 291 | <artifactId>vid-app-common</artifactId> |
| 292 | <version>${project.version}</version> |
| 293 | <type>jar</type> |
| 294 | <classifier>classes</classifier> |
| 295 | </dependency> |
Ittay Stern | 5f45846 | 2019-07-11 12:08:03 +0300 | [diff] [blame] | 296 | <dependency> |
| 297 | <groupId>org.onap.vid</groupId> |
| 298 | <artifactId>vid-webpack-master</artifactId> |
| 299 | <version>${project.version}</version> |
| 300 | <type>war</type> |
| 301 | </dependency> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 302 | <!-- SDK components --> |
| 303 | <dependency> |
| 304 | <groupId>org.onap.portal.sdk</groupId> |
| 305 | <artifactId>epsdk-core</artifactId> |
| 306 | <version>${epsdk.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 307 | </dependency> |
| 308 | <dependency> |
| 309 | <groupId>org.onap.portal.sdk</groupId> |
| 310 | <artifactId>epsdk-analytics</artifactId> |
| 311 | <version>${epsdk.version}</version> |
| 312 | <exclusions> |
| 313 | <exclusion> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 314 | <groupId>com.lowagie</groupId> |
| 315 | <artifactId>itext</artifactId> |
| 316 | </exclusion> |
| 317 | </exclusions> |
| 318 | </dependency> |
| 319 | <dependency> |
| 320 | <groupId>org.onap.portal.sdk</groupId> |
| 321 | <artifactId>epsdk-workflow</artifactId> |
| 322 | <version>${epsdk.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 323 | </dependency> |
| 324 | <dependency> |
| 325 | <groupId>com.att.eelf</groupId> |
| 326 | <artifactId>eelf-core</artifactId> |
| 327 | <version>1.0.0</version> |
| 328 | </dependency> |
| 329 | <!-- Mapper --> |
| 330 | <dependency> |
| 331 | <groupId>com.fasterxml.jackson.core</groupId> |
| 332 | <artifactId>jackson-annotations</artifactId> |
Ittay Stern | 350c530 | 2019-02-13 17:50:59 +0200 | [diff] [blame] | 333 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 334 | </dependency> |
| 335 | <dependency> |
| 336 | <groupId>com.fasterxml.jackson.core</groupId> |
| 337 | <artifactId>jackson-core</artifactId> |
Ittay Stern | 350c530 | 2019-02-13 17:50:59 +0200 | [diff] [blame] | 338 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 339 | </dependency> |
| 340 | <dependency> |
| 341 | <groupId>com.fasterxml.jackson.core</groupId> |
| 342 | <artifactId>jackson-databind</artifactId> |
Amichai Hemli | 9879461 | 2019-09-16 10:53:47 +0300 | [diff] [blame] | 343 | <version>${jackson.databind.version}</version> |
Ittay Stern | 350c530 | 2019-02-13 17:50:59 +0200 | [diff] [blame] | 344 | </dependency> |
Einat Vinouze | f486e80 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 345 | <dependency> |
| 346 | <groupId>com.fasterxml.jackson.module</groupId> |
| 347 | <artifactId>jackson-module-kotlin</artifactId> |
| 348 | <version>${jackson.version}</version> |
| 349 | </dependency> |
Ittay Stern | 350c530 | 2019-02-13 17:50:59 +0200 | [diff] [blame] | 350 | <!-- jackson-dataformat-* are to override elasticsearch-2.2.0 deps hell --> |
| 351 | <!-- (elasticsearch is an epsdk-app-common-2.4.0 dep) --> |
| 352 | <dependency> |
| 353 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 354 | <artifactId>jackson-dataformat-smile</artifactId> |
| 355 | <version>${jackson.version}</version> |
| 356 | </dependency> |
| 357 | <dependency> |
| 358 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 359 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 360 | <version>${jackson.version}</version> |
| 361 | </dependency> |
| 362 | <dependency> |
| 363 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 364 | <artifactId>jackson-dataformat-cbor</artifactId> |
| 365 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 366 | </dependency> |
Ittay Stern | 2687d31 | 2019-02-21 17:26:33 +0200 | [diff] [blame] | 367 | <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability --> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 368 | <dependency> |
| 369 | <groupId>com.mchange</groupId> |
| 370 | <artifactId>c3p0</artifactId> |
Ittay Stern | 904eaac | 2020-02-26 18:50:28 +0200 | [diff] [blame] | 371 | <version>0.9.5.5</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 372 | </dependency> |
| 373 | <dependency> |
| 374 | <groupId>io.searchbox</groupId> |
| 375 | <artifactId>jest</artifactId> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 376 | <version>6.3.1</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 377 | <exclusions> |
| 378 | <exclusion> |
| 379 | <groupId>commons-logging</groupId> |
| 380 | <artifactId>commons-logging</artifactId> |
| 381 | </exclusion> |
| 382 | </exclusions> |
| 383 | </dependency> |
| 384 | <dependency> |
| 385 | <groupId>javax.servlet</groupId> |
| 386 | <artifactId>javax.servlet-api</artifactId> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 387 | <version>4.0.1</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 388 | </dependency> |
| 389 | <dependency> |
| 390 | <groupId>junit</groupId> |
| 391 | <artifactId>junit</artifactId> |
| 392 | <version>4.12</version> |
| 393 | </dependency> |
| 394 | <dependency> |
| 395 | <groupId>org.json</groupId> |
| 396 | <artifactId>json</artifactId> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 397 | <version>20190722</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 398 | </dependency> |
| 399 | <dependency> |
Rina Roi | bfcf8e4 | 2019-07-15 10:36:26 +0300 | [diff] [blame] | 400 | <groupId>org.liquibase</groupId> |
| 401 | <artifactId>liquibase-core</artifactId> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 402 | <version>3.7.0</version> |
Rina Roi | bfcf8e4 | 2019-07-15 10:36:26 +0300 | [diff] [blame] | 403 | </dependency> |
| 404 | <dependency> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 405 | <groupId>org.quartz-scheduler</groupId> |
| 406 | <artifactId>quartz</artifactId> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 407 | <version>2.3.1</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 408 | <exclusions> |
| 409 | <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 --> |
| 410 | <exclusion> |
| 411 | <groupId>c3p0</groupId> |
| 412 | <artifactId>c3p0</artifactId> |
| 413 | </exclusion> |
| 414 | </exclusions> |
| 415 | </dependency> |
| 416 | <!-- bridge to implement commons-logging using slf4j --> |
| 417 | <dependency> |
| 418 | <groupId>org.slf4j</groupId> |
| 419 | <artifactId>jcl-over-slf4j</artifactId> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 420 | <version>1.7.27</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 421 | </dependency> |
Ittay Stern | 3bbd23f | 2019-03-26 11:25:37 +0200 | [diff] [blame] | 422 | |
| 423 | <!-- springframework to override epsdk-app-common's and epsdk-core's versions --> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 424 | <dependency> |
| 425 | <groupId>org.springframework</groupId> |
| 426 | <artifactId>spring-core</artifactId> |
| 427 | <version>${springframework.version}</version> |
| 428 | <exclusions> |
| 429 | <exclusion> |
| 430 | <groupId>commons-logging</groupId> |
| 431 | <artifactId>commons-logging</artifactId> |
| 432 | </exclusion> |
| 433 | </exclusions> |
| 434 | </dependency> |
| 435 | <dependency> |
| 436 | <groupId>org.springframework</groupId> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 437 | <artifactId>spring-test</artifactId> |
| 438 | <version>${springframework.version}</version> |
| 439 | </dependency> |
| 440 | <dependency> |
| 441 | <groupId>org.springframework</groupId> |
| 442 | <artifactId>spring-tx</artifactId> |
| 443 | <version>${springframework.version}</version> |
| 444 | </dependency> |
| 445 | <dependency> |
| 446 | <groupId>org.springframework</groupId> |
| 447 | <artifactId>spring-web</artifactId> |
| 448 | <version>${springframework.version}</version> |
| 449 | </dependency> |
| 450 | <dependency> |
| 451 | <groupId>org.springframework</groupId> |
| 452 | <artifactId>spring-webmvc</artifactId> |
| 453 | <version>${springframework.version}</version> |
| 454 | </dependency> |
Ittay Stern | 3bbd23f | 2019-03-26 11:25:37 +0200 | [diff] [blame] | 455 | <dependency> |
| 456 | <groupId>org.springframework</groupId> |
| 457 | <artifactId>spring-context-support</artifactId> |
| 458 | <version>${springframework.version}</version> |
| 459 | </dependency> |
| 460 | <dependency> |
| 461 | <groupId>org.springframework</groupId> |
| 462 | <artifactId>spring-orm</artifactId> |
Einat Vinouze | d719259 | 2019-07-07 14:15:07 +0300 | [diff] [blame] | 463 | <version>${springframework.orm.version}</version> |
Ittay Stern | 3bbd23f | 2019-03-26 11:25:37 +0200 | [diff] [blame] | 464 | </dependency> |
| 465 | <dependency> |
| 466 | <groupId>org.springframework</groupId> |
| 467 | <artifactId>spring-aop</artifactId> |
| 468 | <version>${springframework.version}</version> |
| 469 | </dependency> |
| 470 | |
Ittay Stern | 0f8e77d | 2020-02-24 13:55:38 +0200 | [diff] [blame] | 471 | <!-- https://eclipse-ee4j.github.io/jaxb-ri/#maven-artifacts --> |
| 472 | <!-- API --> |
Einat Vinouze | f486e80 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 473 | <dependency> |
Ittay Stern | 0f8e77d | 2020-02-24 13:55:38 +0200 | [diff] [blame] | 474 | <groupId>jakarta.xml.bind</groupId> |
| 475 | <artifactId>jakarta.xml.bind-api</artifactId> |
| 476 | <version>${jaxb.version}</version> |
| 477 | </dependency> |
| 478 | <!-- Runtime --> |
| 479 | <dependency> |
| 480 | <groupId>org.glassfish.jaxb</groupId> |
| 481 | <artifactId>jaxb-runtime</artifactId> |
| 482 | <version>${jaxb.version}</version> |
Einat Vinouze | f486e80 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 483 | </dependency> |
| 484 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 485 | </dependencies> |
| 486 | </project> |