2016-12-15 10:14:13 +00:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
<parent>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2021-04-19 15:10:33 +00:00
|
|
|
<artifactId>service-parent-pom</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>2.1.5</version>
|
2016-12-15 10:14:13 +00:00
|
|
|
</parent>
|
|
|
|
|
2016-12-23 17:39:20 +00:00
|
|
|
<artifactId>proxy-mocketbank</artifactId>
|
2024-10-29 13:25:54 +00:00
|
|
|
<version>2.1.2-SNAPSHOT</version>
|
2016-12-15 10:14:13 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2016-12-23 17:39:20 +00:00
|
|
|
<name>proxy-mocketbank</name>
|
2020-08-10 12:21:00 +00:00
|
|
|
<description>Adapter for testing and emulating bank requests</description>
|
2016-12-15 10:14:13 +00:00
|
|
|
|
|
|
|
<properties>
|
2019-02-05 12:12:20 +00:00
|
|
|
<server.port>8022</server.port>
|
2021-12-09 15:18:48 +00:00
|
|
|
<management.port>8023</management.port>
|
2019-02-05 12:12:20 +00:00
|
|
|
<server.rest.port>8080</server.rest.port>
|
2023-10-10 16:14:18 +00:00
|
|
|
<server.rest.endpoint>mocketbank</server.rest.endpoint>
|
2021-12-09 15:18:48 +00:00
|
|
|
<exposed.ports>${server.port} ${server.rest.port} ${management.port}</exposed.ports>
|
2016-12-15 10:14:13 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-12-09 15:18:48 +00:00
|
|
|
<cds-proto.version>1.64-74a763b</cds-proto.version>
|
2022-07-07 08:21:05 +00:00
|
|
|
<scrooge.proto.version>1.16-b0d5cf2</scrooge.proto.version>
|
2016-12-15 10:14:13 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--Thrirdparty libs-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-12-15 10:14:13 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-12-15 10:14:13 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2016-12-15 10:14:13 +00:00
|
|
|
</dependency>
|
2020-08-10 12:21:00 +00:00
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2020-08-10 12:21:00 +00:00
|
|
|
</dependency>
|
2021-05-21 08:12:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
</dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2021-05-21 08:12:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
</dependency>
|
2021-05-21 14:14:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
2022-10-18 11:23:40 +00:00
|
|
|
<version>1.10.0</version>
|
2021-05-21 14:14:27 +00:00
|
|
|
</dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
|
|
|
|
<!-- vality -->
|
2022-02-02 14:00:13 +00:00
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2018-11-19 13:51:29 +00:00
|
|
|
<artifactId>damsel</artifactId>
|
2024-10-29 13:25:54 +00:00
|
|
|
<version>1.649-7ed2112</version>
|
2021-04-19 15:10:33 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2020-03-26 13:56:51 +00:00
|
|
|
<artifactId>cds-proto</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>1.66-01353ce</version>
|
2018-11-19 13:51:29 +00:00
|
|
|
</dependency>
|
2019-12-19 12:11:20 +00:00
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2020-08-10 12:21:00 +00:00
|
|
|
<artifactId>moneypenny-proto</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>1.13-dc974a6</version>
|
2019-12-19 12:11:20 +00:00
|
|
|
</dependency>
|
2018-03-22 12:49:42 +00:00
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality.geck</groupId>
|
2018-03-22 12:49:42 +00:00
|
|
|
<artifactId>serializer</artifactId>
|
|
|
|
</dependency>
|
2018-07-31 16:11:33 +00:00
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2018-07-31 16:11:33 +00:00
|
|
|
<artifactId>identdocstore-proto</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>1.18-0ab676d</version>
|
2016-12-15 10:14:13 +00:00
|
|
|
</dependency>
|
2019-04-23 10:45:00 +00:00
|
|
|
<dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2019-08-19 08:25:59 +00:00
|
|
|
<artifactId>adapter-common-lib</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>1.2.13</version>
|
2019-04-23 10:45:00 +00:00
|
|
|
</dependency>
|
2022-03-21 09:54:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.vality</groupId>
|
2022-07-07 08:21:05 +00:00
|
|
|
<artifactId>scrooge-proto</artifactId>
|
|
|
|
<version>${scrooge.proto.version}</version>
|
2022-03-21 09:54:46 +00:00
|
|
|
</dependency>
|
2023-10-10 16:14:18 +00:00
|
|
|
|
2016-12-15 10:14:13 +00:00
|
|
|
<!--Test libs-->
|
|
|
|
<dependency>
|
2017-10-23 13:30:10 +00:00
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
2022-03-30 15:23:42 +00:00
|
|
|
<version>1.14.3</version>
|
2016-12-15 10:14:13 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-10-23 13:30:10 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2016-12-15 10:14:13 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2017-05-25 16:23:09 +00:00
|
|
|
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
|
2016-12-15 10:14:13 +00:00
|
|
|
<targetPath>${project.build.directory}</targetPath>
|
|
|
|
<includes>
|
|
|
|
<include>Dockerfile</include>
|
|
|
|
</includes>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
2017-05-25 16:23:09 +00:00
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>Dockerfile</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
2016-12-15 10:14:13 +00:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2017-05-25 16:23:09 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>3.0.0</version>
|
2017-05-25 16:23:09 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-filtering</artifactId>
|
2023-10-10 16:14:18 +00:00
|
|
|
<version>3.3.1</version>
|
2017-05-25 16:23:09 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<configuration>
|
|
|
|
<resourceBundles>
|
2023-10-10 16:14:18 +00:00
|
|
|
<resourceBundle>dev.vality:shared-resources:${shared-resources.version}</resourceBundle>
|
2017-05-25 16:23:09 +00:00
|
|
|
</resourceBundles>
|
|
|
|
<attachToMain>false</attachToMain>
|
|
|
|
<attachToTest>false</attachToTest>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>process</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-12-15 10:14:13 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-12-21 11:35:26 +00:00
|
|
|
</project>
|