102 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			4.0 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>
 | |
|     <artifactId>spring-boot-testing-2</artifactId>
 | |
|     <name>spring-boot-testing-2</name>
 | |
|     <packaging>jar</packaging>
 | |
|     <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>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web-services</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-security</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>wsdl4j</groupId>
 | |
|             <artifactId>wsdl4j</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.ws</groupId>
 | |
|             <artifactId>spring-ws-test</artifactId>
 | |
|             <version>3.1.3</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
 | |
|         </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>
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>testcontainers</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.jvnet.jaxb2.maven2</groupId>
 | |
|                 <artifactId>maven-jaxb2-plugin</artifactId>
 | |
|                 <version>0.15.1</version>
 | |
|                 <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>
 | |
| 
 | |
|     <properties>
 | |
|         <start-class>com.baeldung.boot.Application</start-class>
 | |
|         <testcontainers.version>1.17.2</testcontainers.version>
 | |
|         <testcontainers-keycloak.version>1.10.0</testcontainers-keycloak.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |