537 lines
20 KiB
XML
537 lines
20 KiB
XML
<?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>cz.moneta.test</groupId>
|
|
<artifactId>harness</artifactId>
|
|
<version>7.55-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<junit.jupiter.version>5.5.1</junit.jupiter.version>
|
|
<junit.platform.version>1.5.1</junit.platform.version>
|
|
<selenium.version>4.13.0</selenium.version>
|
|
<jersey.version>3.0.12</jersey.version>
|
|
<mimepull.version>1.9.11</mimepull.version>
|
|
<jackson-modules.version>2.16.1</jackson-modules.version>
|
|
<oracle.driver.version>12.2.0.1</oracle.driver.version>
|
|
<microsoft.sql.driver.version>8.2.0.jre8</microsoft.sql.driver.version>
|
|
<postgres.driver.version>42.7.1</postgres.driver.version>
|
|
<commons-lang3.version>3.7</commons-lang3.version>
|
|
<commons-text.version>1.4</commons-text.version>
|
|
<commons-io.version>2.6</commons-io.version>
|
|
<jooq.version>3.1.0</jooq.version>
|
|
<vault-java-driver.version>5.1.0</vault-java-driver.version>
|
|
<log4j.version>2.17.1</log4j.version>
|
|
<appium-java-client.version>8.6.0</appium-java-client.version>
|
|
<commons-beanutils.version>1.9.3</commons-beanutils.version>
|
|
<commons-configuration.version>1.6</commons-configuration.version>
|
|
<cxf.version>4.0.3</cxf.version>
|
|
<ibm.mq.version>9.4.5.0</ibm.mq.version>
|
|
<javax.jms.version>2.0.1</javax.jms.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
</dependency>
|
|
|
|
<!-- not needed on newer IDEA versions -->
|
|
<dependency>
|
|
<groupId>org.junit.vintage</groupId>
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.platform</groupId>
|
|
<artifactId>junit-platform-runner</artifactId>
|
|
<version>${junit.platform.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.platform</groupId>
|
|
<artifactId>junit-platform-suite-api</artifactId>
|
|
<version>${junit.platform.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-java</artifactId>
|
|
<version>${selenium.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.11.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.14</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oracle.jdbc</groupId>
|
|
<artifactId>ojdbc8</artifactId>
|
|
<version>${oracle.driver.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
<version>${microsoft.sql.driver.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgres.driver.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
<artifactId>jersey-client</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
<artifactId>jersey-hk2</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
<artifactId>jersey-common</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jvnet.mimepull</groupId>
|
|
<artifactId>mimepull</artifactId>
|
|
<version>${mimepull.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
<artifactId>jersey-media-multipart</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-csv</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
<artifactId>jackson-module-parameter-names</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jdk8</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>${jackson-modules.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
<version>${commons-text.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>${commons-beanutils.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-configuration</groupId>
|
|
<artifactId>commons-configuration</artifactId>
|
|
<version>${commons-configuration.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq</artifactId>
|
|
<version>${jooq.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.bettercloud</groupId>
|
|
<artifactId>vault-java-driver</artifactId>
|
|
<version>${vault-java-driver.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-jul</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<!--
|
|
This was added with TIF calling, if anything will not be broken then its possible to remove it
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-1.2-api</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency> -->
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-iostreams</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.appium</groupId>
|
|
<artifactId>java-client</artifactId>
|
|
<version>${appium-java-client.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Used for Web Services connector -->
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-ws-security</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Used in IbmMqConnector -->
|
|
<dependency>
|
|
<groupId>com.ibm.mq</groupId>
|
|
<artifactId>com.ibm.mq.allclient</artifactId>
|
|
<version>${ibm.mq.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.jms</groupId>
|
|
<artifactId>javax.jms-api</artifactId>
|
|
<version>${javax.jms.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Used in Wso2ConnectorServlet -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>4.0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Used in GreenScreenConnector -->
|
|
<dependency>
|
|
<groupId>us.abstracta</groupId>
|
|
<artifactId>dm3270-lib</artifactId>
|
|
<version>0.9.1</version>
|
|
</dependency>
|
|
|
|
<!-- Used for communication with Ilods Server (IlodsServerConnector) -->
|
|
<dependency>
|
|
<groupId>cz.moneta.ilods</groupId>
|
|
<artifactId>ilods_shared_resources</artifactId>
|
|
<version>0.0.9</version>
|
|
</dependency>
|
|
|
|
<!-- Used for WsConnector -->
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.ws</groupId>
|
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.soap</groupId>
|
|
<artifactId>jakarta.xml.soap-api</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.annotation</groupId>
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.jws</groupId>
|
|
<artifactId>jakarta.jws-api</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.codoid</groupId>
|
|
<artifactId>robotil</artifactId>
|
|
<version>1.10</version>
|
|
</dependency>
|
|
|
|
<!-- StringTemplate -->
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>ST4</artifactId>
|
|
<version>4.3.4</version>
|
|
</dependency>
|
|
|
|
<!-- AssertJ -->
|
|
<dependency>
|
|
<groupId>net.javacrumbs.json-unit</groupId>
|
|
<artifactId>json-unit-assertj</artifactId>
|
|
<version>3.2.7</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<source>17</source>
|
|
<target>17</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.0.0-M4</version>
|
|
<configuration>
|
|
<excludedEnvironmentVariables>
|
|
HARNESS_CONFIG
|
|
</excludedEnvironmentVariables>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>Moneta Artifactory</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
<releases><enabled>true</enabled></releases>
|
|
<id>confluent</id>
|
|
<name>Confluent Hub</name>
|
|
<url>https://packages.confluent.io/maven/</url>
|
|
</repository>
|
|
<repository>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
<releases><enabled>true</enabled></releases>
|
|
<id>mcentral</id>
|
|
<name>Maven Central</name>
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
</repository>
|
|
<repository>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
<releases><enabled>true</enabled></releases>
|
|
<id>mvnrepo</id>
|
|
<name>MVN Repository</name>
|
|
<url>https://mvnrepository.com/artifact/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
<releases><enabled>true</enabled></releases>
|
|
<id>central</id>
|
|
<name>plugins-release</name>
|
|
<url>https://artifactory-aws.ux.mbid.cz/artifactory/plugins-release</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
<releases><enabled>false</enabled></releases>
|
|
<id>snapshots</id>
|
|
<name>plugins-snapshot</name>
|
|
<url>https://artifactory-aws.ux.mbid.cz/artifactory/plugins-snapshot</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>cxf-cebia</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-codegen-plugin</artifactId>
|
|
<version>${cxf.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-sources</id>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<sourceRoot>${basedir}/src/main/java</sourceRoot>
|
|
<wsdlOptions>
|
|
<wsdlOption>
|
|
<wsdl>${basedir}/src/main/resources/ws/IvaServiceActual.wsdl</wsdl>
|
|
<extraargs>
|
|
<extraarg>-xjc-Xfluent-api</extraarg>
|
|
</extraargs>
|
|
<bindingFiles>
|
|
<bindingFile>${basedir}/src/main/resources/ws/jaxb-bindings.xml
|
|
</bindingFile>
|
|
</bindingFiles>
|
|
</wsdlOption>
|
|
</wsdlOptions>
|
|
</configuration>
|
|
<goals>
|
|
<goal>wsdl2java</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.java.dev.jaxb2-commons</groupId>
|
|
<artifactId>jaxb-fluent-api</artifactId>
|
|
<version>2.1.8</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>withDeps</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
<configuration>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Martin Petrus</name>
|
|
<email>martin.petrus@moneta.cz</email>
|
|
</developer>
|
|
<developer>
|
|
<name>Petr Fifka</name>
|
|
<email>petr.fifka1@moneta.cz</email>
|
|
</developer>
|
|
<developer>
|
|
<name>Georgij Boljuba</name>
|
|
<email>georgij@boljuba.com</email>
|
|
</developer>
|
|
</developers>
|
|
</project>
|