* Added/Created parent module * moved spring-5-data-reactive (submodule) to spring-reactive-modules (parent) * moved spring-5-reactive-2 (submodule) to spring-reactive-modules (parent) * moved spring-5-reactive-3 (submodule) to spring-reactive-modules (parent) * moved spring-5-reactive-client (submodule) to spring-reactive-modules (parent) * moved spring-5-reactive-oauth (submodule) to spring-reactive-modules (parent) * moved spring-5-reactive-security (submodule) to spring-reactive-modules (parent) * moved spring-5-reactive (submodule) to spring-reactive-modules (parent) * moved spring-reactive (submodule) to spring-reactive-modules (parent) * deleted modules that were moved across * renamed spring-reactive-modules to spring-5-reactive-modules Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com>
		
			
				
	
	
		
			128 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			128 lines
		
	
	
		
			4.8 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.spring.reactive</groupId>
 | |
|         <artifactId>spring-5-reactive-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </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.reactive.actuator.Spring5ReactiveApplication</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>
 | |
|         <project-reactor-test>3.1.6.RELEASE</project-reactor-test>
 | |
|     </properties>
 | |
| 
 | |
| </project> |