135 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			5.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-5-reactive-security</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
|     <name>spring-5-reactive-security</name>
 | |
|     <packaging>jar</packaging>
 | |
|     <description>spring 5 security sample project about new features</description>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-boot-2</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../parent-boot-2</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-validation</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-tomcat</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-webflux</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.projectreactor</groupId>
 | |
|             <artifactId>reactor-spring</artifactId>
 | |
|             <version>${reactor-spring.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.json.bind</groupId>
 | |
|             <artifactId>javax.json.bind-api</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-actuator</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.projectlombok</groupId>
 | |
|             <artifactId>lombok</artifactId>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.geronimo.specs</groupId>
 | |
|             <artifactId>geronimo-json_1.1_spec</artifactId>
 | |
|             <version>${geronimo-json_1.1_spec.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.johnzon</groupId>
 | |
|             <artifactId>johnzon-jsonb</artifactId>
 | |
|         </dependency>
 | |
|         <!-- utils -->
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- runtime and test scoped -->
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-devtools</artifactId>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-test</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-collections4</artifactId>
 | |
|             <version>${commons-collections4.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>io.reactivex.rxjava2</groupId>
 | |
|             <artifactId>rxjava</artifactId>
 | |
|             <version>${rxjava-version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.projectreactor</groupId>
 | |
|             <artifactId>reactor-test</artifactId>
 | |
|             <version>${project-reactor-test}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-security</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.security</groupId>
 | |
|             <artifactId>spring-security-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <mainClass>com.baeldung.webflux.EmployeeSpringApplication</mainClass>
 | |
|                     <layout>JAR</layout>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <reactor-spring.version>1.0.1.RELEASE</reactor-spring.version>
 | |
|         <rxjava-version>2.1.12</rxjava-version>
 | |
|         <johnzon.version>1.1.3</johnzon.version>
 | |
|         <jsonb-api.version>1.0</jsonb-api.version>
 | |
|         <geronimo-json_1.1_spec.version>1.0</geronimo-json_1.1_spec.version>
 | |
|         <commons-collections4.version>4.1</commons-collections4.version>
 | |
|         <project-reactor-test>3.1.6.RELEASE</project-reactor-test>
 | |
|         <spring-boot.version>2.2.2.RELEASE</spring-boot.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |