2021-12-14 18:05:19 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-05-24 10:07:51 -04:00
|
|
|
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">
|
2021-12-14 18:05:19 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-boot-testing-2</artifactId>
|
|
|
|
<name>spring-boot-testing-2</name>
|
2021-12-15 05:50:22 -05:00
|
|
|
<packaging>jar</packaging>
|
2021-12-14 18:05:19 -05:00
|
|
|
<description>This is simple boot application for demonstrating testing features.</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2022-05-27 23:27:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
|
|
</dependency>
|
2022-07-15 11:34:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
2022-07-14 00:20:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
2022-05-27 23:27:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>wsdl4j</groupId>
|
|
|
|
<artifactId>wsdl4j</artifactId>
|
|
|
|
</dependency>
|
2021-12-14 18:05:19 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-05-27 23:27:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.ws</groupId>
|
|
|
|
<artifactId>spring-ws-test</artifactId>
|
2023-09-03 02:18:10 -04:00
|
|
|
<version>${spring-ws-test.version}</version>
|
2022-05-27 23:27:51 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-15 11:34:13 -04:00
|
|
|
<dependency>
|
2022-09-05 02:27:12 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
|
2022-07-15 11:34:13 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.dasniko</groupId>
|
|
|
|
<artifactId>testcontainers-keycloak</artifactId>
|
|
|
|
<version>${testcontainers-keycloak.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-14 00:20:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
2022-07-15 11:34:13 -04:00
|
|
|
<version>${testcontainers.version}</version>
|
2022-07-14 00:20:08 -04:00
|
|
|
</dependency>
|
2023-03-09 22:07:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>${testcontainers.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.redis.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers-redis-junit-jupiter</artifactId>
|
2023-09-03 02:18:10 -04:00
|
|
|
<version>${testcontainers-redis-junit-jupiter.version}</version>
|
2023-03-09 22:07:31 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-12-14 18:05:19 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2022-05-27 23:27:51 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
|
|
|
<artifactId>maven-jaxb2-plugin</artifactId>
|
2023-09-03 02:18:10 -04:00
|
|
|
<version>${maven-jaxb2-plugin.version}</version>
|
2022-05-27 23:27:51 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>xjc</id>
|
|
|
|
<goals>
|
|
|
|
<goal>generate</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<schemaDirectory>${project.basedir}/src/main/resources/webservice</schemaDirectory>
|
|
|
|
<generateDirectory>${project.basedir}/src/main/java</generateDirectory>
|
|
|
|
<generatePackage>com.baeldung.webservice.generated</generatePackage>
|
|
|
|
<episode>false</episode>
|
|
|
|
<noFileHeader>true</noFileHeader>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2021-12-14 18:05:19 -05:00
|
|
|
<properties>
|
|
|
|
<start-class>com.baeldung.boot.Application</start-class>
|
2023-09-03 02:18:10 -04:00
|
|
|
<spring-ws-test.version>3.1.3</spring-ws-test.version>
|
2022-07-15 11:34:13 -04:00
|
|
|
<testcontainers.version>1.17.2</testcontainers.version>
|
|
|
|
<testcontainers-keycloak.version>1.10.0</testcontainers-keycloak.version>
|
2023-09-03 02:18:10 -04:00
|
|
|
<testcontainers-redis-junit-jupiter.version>1.4.6</testcontainers-redis-junit-jupiter.version>
|
|
|
|
<maven-jaxb2-plugin.version>0.15.1</maven-jaxb2-plugin.version>
|
2021-12-14 18:05:19 -05:00
|
|
|
</properties>
|
|
|
|
|
2022-09-13 11:52:49 -04:00
|
|
|
</project>
|