121 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			3.6 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
| 	<modelVersion>4.0.0</modelVersion>
 | |
| 	<parent>
 | |
| 		<groupId>org.springframework.boot</groupId>
 | |
| 		<artifactId>spring-boot-starter-parent</artifactId>
 | |
| 		<version>2.3.1.RELEASE</version>
 | |
| 		<relativePath/> <!-- lookup parent from repository -->
 | |
| 	</parent>
 | |
| 	<groupId>com.release11.klaus</groupId>
 | |
| 	<artifactId>Klaus</artifactId>
 | |
| 	<version>0.0.1-SNAPSHOT</version>
 | |
| 	<name>Klaus</name>
 | |
| 	<description>Mockup service for integration tests</description>
 | |
| 
 | |
| 	<properties>
 | |
| 		<java.version>14</java.version>
 | |
| 	</properties>
 | |
| 
 | |
| 	<dependencies>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-thymeleaf</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-web</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-devtools</artifactId>
 | |
| 			<scope>runtime</scope>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-configuration-processor</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.projectlombok</groupId>
 | |
| 			<artifactId>lombok</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-test</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 			<exclusions>
 | |
| 				<exclusion>
 | |
| 					<groupId>org.junit.vintage</groupId>
 | |
| 					<artifactId>junit-vintage-engine</artifactId>
 | |
| 				</exclusion>
 | |
| 					<exclusion>
 | |
| 						<artifactId>logback-classic</artifactId>
 | |
| 						<groupId>ch.qos.logback</groupId>
 | |
| 					</exclusion>
 | |
| 			</exclusions>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.projectreactor</groupId>
 | |
| 			<artifactId>reactor-test</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.assertj</groupId>
 | |
| 			<artifactId>assertj-core</artifactId>
 | |
| 			<version>3.16.1</version>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-validation</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-data-redis</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>com.cwbase</groupId>
 | |
| 			<artifactId>logback-redis-appender</artifactId>
 | |
| 			<version>1.1.6</version>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.commons</groupId>
 | |
| 			<artifactId>commons-pool2</artifactId>
 | |
| 			<version>2.8.0</version>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-redis</artifactId>
 | |
| 			<version>2.2.6.RELEASE</version>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>redis.clients</groupId>
 | |
| 			<artifactId>jedis</artifactId>
 | |
| 			<version>3.3.0</version>
 | |
| 		</dependency>
 | |
|         <dependency>
 | |
|             <groupId>jakarta.persistence</groupId>
 | |
|             <artifactId>jakarta.persistence-api</artifactId>
 | |
|             <version>2.2.3</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
| 	<build>
 | |
| 		<plugins>
 | |
| 			<plugin>
 | |
| 				<groupId>org.springframework.boot</groupId>
 | |
| 				<artifactId>spring-boot-maven-plugin</artifactId>
 | |
| 			</plugin>
 | |
| 		</plugins>
 | |
| 	</build>
 | |
| 
 | |
| </project>
 | 
