Last active
April 2, 2019 11:30
-
-
Save quirijnslings/3b0592eb32b38fed3e3b05f42eed690b to your computer and use it in GitHub Desktop.
custom-deployer-tridion9-pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.acme</groupId> | |
<artifactId>acme-custom-deployer</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<name>customdeployer</name> | |
<url>http://www.acme.com</url> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<maven.compiler.source>1.7</maven.compiler.source> | |
<maven.compiler.target>1.7</maven.compiler.target> | |
</properties> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.8.0</version> | |
<inherited>true</inherited> | |
<configuration> | |
<source>1.8</source> | |
<target>1.8</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
<resources> | |
<resource> | |
<directory>config</directory> | |
</resource> | |
</resources> | |
</build> | |
<dependencies> | |
<!-- from services/deployer folder --> | |
<dependency> | |
<groupId>javax.activation</groupId> | |
<artifactId>activation</artifactId> | |
<version>1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>com.typesafe.akka</groupId> | |
<artifactId>akka-actor_2.12</artifactId> | |
<version>2.5.17</version> | |
</dependency> | |
<dependency> | |
<groupId>com.amazonaws</groupId> | |
<artifactId>amazon-sqs-java-messaging-lib</artifactId> | |
<version>1.0.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.glassfish.external</groupId> | |
<artifactId>antlr</artifactId> | |
<version>2.7.7</version> | |
</dependency> | |
<dependency> | |
<groupId>org.aspectj</groupId> | |
<artifactId>aspectjrt</artifactId> | |
<version>1.8.13</version> | |
</dependency> | |
<dependency> | |
<groupId>com.amazonaws</groupId> | |
<artifactId>aws-java-sdk-core</artifactId> | |
<version>1.11.396</version> | |
</dependency> | |
<dependency> | |
<groupId>com.amazonaws</groupId> | |
<artifactId>aws-java-sdk-sqs</artifactId> | |
<version>1.11.396</version> | |
</dependency> | |
<dependency> | |
<groupId>net.bytebuddy</groupId> | |
<artifactId>byte-buddy</artifactId> | |
<version>1.6.14</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.cache</groupId> | |
<artifactId>cache-api</artifactId> | |
<version>1.0.0</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-codec</groupId> | |
<artifactId>commons-codec</artifactId> | |
<version>1.11</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-compress</artifactId> | |
<version>1.12</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-dbcp</groupId> | |
<artifactId>commons-dbcp</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-lang3</artifactId> | |
<version>3.5</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-net</groupId> | |
<artifactId>commons-net</artifactId> | |
<version>3.6</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-pool</groupId> | |
<artifactId>commons-pool</artifactId> | |
<version>1.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-pool2</artifactId> | |
<version>2.4.3</version> | |
</dependency> | |
<dependency> | |
<groupId>com.typesafe</groupId> | |
<artifactId>config</artifactId> | |
<version>1.3.3</version> | |
</dependency> | |
<dependency> | |
<groupId>dom4j</groupId> | |
<artifactId>dom4j</artifactId> | |
<version>1.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.ehcache</groupId> | |
<artifactId>ehcache</artifactId> | |
<version>3.5.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.code.gson</groupId> | |
<artifactId>gson</artifactId> | |
<version>2.8.5</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate.common</groupId> | |
<artifactId>hibernate-commons-annotations</artifactId> | |
<version>5.0.1.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-core</artifactId> | |
<version>5.2.16.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-entitymanager</artifactId> | |
<version>5.2.16.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate.javax.persistence</groupId> | |
<artifactId>hibernate-jpa-2.1-api</artifactId> | |
<version>1.0.0.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpclient</artifactId> | |
<version>4.5.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.httpcomponents</groupId> | |
<artifactId>httpcore</artifactId> | |
<version>4.4.10</version> | |
</dependency> | |
<dependency> | |
<groupId>software.amazon.ion</groupId> | |
<artifactId>ion-java</artifactId> | |
<version>1.0.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.dataformat</groupId> | |
<artifactId>jackson-dataformat-cbor</artifactId> | |
<version>2.9.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.jboss</groupId> | |
<artifactId>jandex</artifactId> | |
<version>2.0.3.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.javassist</groupId> | |
<artifactId>javassist</artifactId> | |
<version>3.23.1-GA</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.xml.bind</groupId> | |
<artifactId>jaxb-api</artifactId> | |
<version>2.2.3</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sun.xml.bind</groupId> | |
<artifactId>jaxb-impl</artifactId> | |
<version>2.2.4-1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.jboss.spec.javax.transaction</groupId> | |
<artifactId>jboss-transaction-api_1.2_spec</artifactId> | |
<version>1.0.1.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>redis.clients</groupId> | |
<artifactId>jedis</artifactId> | |
<version>2.9.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.amazonaws</groupId> | |
<artifactId>jmespath-java</artifactId> | |
<version>1.11.396</version> | |
</dependency> | |
<dependency> | |
<groupId>joda-time</groupId> | |
<artifactId>joda-time</artifactId> | |
<version>2.10</version> | |
</dependency> | |
<dependency> | |
<groupId>org.mapstruct</groupId> | |
<artifactId>mapstruct</artifactId> | |
<version>1.0.0.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>com.microsoft.sqlserver</groupId> | |
<artifactId>mssql-jdbc</artifactId> | |
<version>7.0.0.jre8</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sdl</groupId> | |
<artifactId>odata_api</artifactId> | |
<version>2.6.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sdl</groupId> | |
<artifactId>odata_client</artifactId> | |
<version>2.6.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sdl</groupId> | |
<artifactId>odata_client_api</artifactId> | |
<version>2.6.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sdl</groupId> | |
<artifactId>odata_edm</artifactId> | |
<version>2.6.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sdl</groupId> | |
<artifactId>odata_parser</artifactId> | |
<version>2.6.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sdl</groupId> | |
<artifactId>odata_renderer</artifactId> | |
<version>2.6.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.squareup.okhttp3</groupId> | |
<artifactId>okhttp</artifactId> | |
<version>3.11.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.squareup.okio</groupId> | |
<artifactId>okio</artifactId> | |
<version>1.14.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang.modules</groupId> | |
<artifactId>scala-java8-compat_2.12</artifactId> | |
<version>0.8.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang</groupId> | |
<artifactId>scala-library</artifactId> | |
<version>2.12.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang.modules</groupId> | |
<artifactId>scala-parser-combinators_2.12</artifactId> | |
<version>1.1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.data</groupId> | |
<artifactId>spring-data-commons</artifactId> | |
<version>1.13.14.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.data</groupId> | |
<artifactId>spring-data-jpa</artifactId> | |
<version>1.11.14.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.integration</groupId> | |
<artifactId>spring-integration-core</artifactId> | |
<version>4.3.17.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.integration</groupId> | |
<artifactId>spring-integration-jms</artifactId> | |
<version>4.3.17.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jdbc</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jms</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-messaging</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-orm</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.plugin</groupId> | |
<artifactId>spring-plugin-core</artifactId> | |
<version>1.2.0.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.plugin</groupId> | |
<artifactId>spring-plugin-metadata</artifactId> | |
<version>1.2.0.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.retry</groupId> | |
<artifactId>spring-retry</artifactId> | |
<version>1.2.2.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-tx</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-core</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-schema</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-spi</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-spring-web</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-swagger-common</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-swagger-ui</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>io.springfox</groupId> | |
<artifactId>springfox-swagger2</artifactId> | |
<version>2.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.xml.stream</groupId> | |
<artifactId>stax-api</artifactId> | |
<version>1.0-2</version> | |
</dependency> | |
<dependency> | |
<groupId>io.swagger</groupId> | |
<artifactId>swagger-annotations</artifactId> | |
<version>1.5.21</version> | |
</dependency> | |
<dependency> | |
<groupId>io.swagger</groupId> | |
<artifactId>swagger-models</artifactId> | |
<version>1.5.10</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-adf-client</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-adf-engine</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-cache</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-core</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-core-license</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-datalayer</artifactId> | |
<version>11.0.0-1024</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-api</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-binary-storage</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-combined-assembly</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-config</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-controller</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-legacy-controller</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-legacy-state</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-legacy-transport</artifactId> | |
<version>11.0.0-1027</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-model</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-queue</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-state</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-web-combined-assembly</artifactId> | |
<version>11.0.0-1027</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-web-extension</artifactId> | |
<version>11.0.0-1027</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-worker</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-deployer-worker-queue</artifactId> | |
<version>11.0.0-1026</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-discovery-client-lightweight</artifactId> | |
<version>11.0.0-1028</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-discovery-common</artifactId> | |
<version>11.0.0-1028</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-discovery-registration-api</artifactId> | |
<version>11.0.0-1028</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-model</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-oauth</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-oauth-common</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-readwrite-filter</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-adf-api</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-tcdl</artifactId> | |
<version>11.0.0-1023</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-api-broker</artifactId> | |
<version>11.0.0-1024</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>tdframework</artifactId> | |
<version>1.4-GA</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.xbean</groupId> | |
<artifactId>xbean-spring</artifactId> | |
<version>4.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-text</artifactId> | |
<version>1.6</version> | |
</dependency> | |
<!-- from services/activemq --> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-client</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-http</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-jms-pool</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-kahadb-store</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-pool</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq.protobuf</groupId> | |
<artifactId>activemq-protobuf</artifactId> | |
<version>1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-spring</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-stomp</artifactId> | |
<version>5.15.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.geronimo.specs</groupId> | |
<artifactId>geronimo-j2ee-management_1.1_spec</artifactId> | |
<version>1.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.geronimo.specs</groupId> | |
<artifactId>geronimo-jms_1.1_spec</artifactId> | |
<version>1.1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.geronimo.specs</groupId> | |
<artifactId>geronimo-jta_1.0.1B_spec</artifactId> | |
<version>1.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.fusesource.hawtbuf</groupId> | |
<artifactId>hawtbuf</artifactId> | |
<version>1.11</version> | |
</dependency> | |
<dependency> | |
<groupId>kxml2</groupId> | |
<artifactId>kxml2</artifactId> | |
<version>2.3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>xmlpull</groupId> | |
<artifactId>xmlpull</artifactId> | |
<version>1.1.3.4d_b4_min</version> | |
</dependency> | |
<dependency> | |
<groupId>xpp3</groupId> | |
<artifactId>xpp3_min</artifactId> | |
<version>1.1.4c</version> | |
</dependency> | |
<dependency> | |
<groupId>com.thoughtworks.xstream</groupId> | |
<artifactId>xstream</artifactId> | |
<version>1.4.10</version> | |
</dependency> | |
<!-- from lib folder --> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-common-config</artifactId> | |
<version>11.0.0-1022</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-common-config-api</artifactId> | |
<version>11.0.0-1022</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-common-config-legacy</artifactId> | |
<version>11.0.0-1022</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-common-spring-util</artifactId> | |
<version>11.0.0-1022</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-common-util</artifactId> | |
<version>11.0.0-1022</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-service-container-core</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>com.tridion.custom</groupId> | |
<artifactId>udp-service-container-plugins</artifactId> | |
<version>11.0.0-1020</version> | |
</dependency> | |
<dependency> | |
<groupId>org.aspectj</groupId> | |
<artifactId>aspectjweaver</artifactId> | |
<version>1.9.1</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml</groupId> | |
<artifactId>classmate</artifactId> | |
<version>1.3.4</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>18.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-validator</artifactId> | |
<version>5.3.6.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-annotations</artifactId> | |
<version>2.9.6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-core</artifactId> | |
<version>2.9.6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-databind</artifactId> | |
<version>2.9.6</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.annotation</groupId> | |
<artifactId>javax.annotation-api</artifactId> | |
<version>1.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.jboss.logging</groupId> | |
<artifactId>jboss-logging</artifactId> | |
<version>3.3.2.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>jcl-over-slf4j</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>jul-to-slf4j</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>log4j-over-slf4j</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.2.3</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-core</artifactId> | |
<version>1.2.3</version> | |
</dependency> | |
<dependency> | |
<groupId>xalan</groupId> | |
<artifactId>serializer</artifactId> | |
<version>2.7.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>org.yaml</groupId> | |
<artifactId>snakeyaml</artifactId> | |
<version>1.22</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-aop</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-beans</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-actuator</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-autoconfigure</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-aop</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-logging</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-tomcat</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
<version>1.5.16.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-core</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-expression</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>4.3.19.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tomcat</groupId> | |
<artifactId>tomcat-annotations-api</artifactId> | |
<version>8.5.34</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tomcat.embed</groupId> | |
<artifactId>tomcat-embed-core</artifactId> | |
<version>8.5.34</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tomcat.embed</groupId> | |
<artifactId>tomcat-embed-el</artifactId> | |
<version>8.5.34</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tomcat.embed</groupId> | |
<artifactId>tomcat-embed-websocket</artifactId> | |
<version>8.5.34</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.validation</groupId> | |
<artifactId>validation-api</artifactId> | |
<version>2.0.1.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>xalan</groupId> | |
<artifactId>xalan</artifactId> | |
<version>2.7.2</version> | |
</dependency> | |
<dependency> | |
<groupId>xerces</groupId> | |
<artifactId>xercesImpl</artifactId> | |
<version>2.12.0</version> | |
</dependency> | |
<dependency> | |
<groupId>xml-apis</groupId> | |
<artifactId>xml-apis</artifactId> | |
<version>1.4.01</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment