| 
									
										
										
										
											2018-07-14 21:24:33 +02:00
										 |  |  | <?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> | 
					
						
							| 
									
										
										
										
											2018-08-31 20:22:40 +05:30
										 |  |  | 	<artifactId>spring-reactive-kotlin</artifactId> | 
					
						
							| 
									
										
										
										
											2018-07-14 21:24:33 +02:00
										 |  |  | 	<packaging>jar</packaging> | 
					
						
							| 
									
										
										
										
											2018-08-31 20:22:40 +05:30
										 |  |  | 	<name>Spring Reactive Kotlin</name> | 
					
						
							| 
									
										
										
										
											2018-07-14 21:24:33 +02:00
										 |  |  | 	<description>Demo project for Spring Boot</description> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<parent> | 
					
						
							| 
									
										
										
										
											2018-08-26 01:06:17 +05:30
										 |  |  | 		<artifactId>parent-kotlin</artifactId> | 
					
						
							| 
									
										
										
										
											2018-08-14 13:34:45 +05:30
										 |  |  | 		<groupId>com.baeldung</groupId> | 
					
						
							| 
									
										
										
										
											2018-08-26 01:06:17 +05:30
										 |  |  | 		<version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 		<relativePath>../parent-kotlin</relativePath> | 
					
						
							| 
									
										
										
										
											2018-08-14 13:34:45 +05:30
										 |  |  | 	</parent> | 
					
						
							| 
									
										
										
										
											2018-07-14 21:24:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	<dependencies> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  | 			<artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  | 			<artifactId>spring-boot-starter-webflux</artifactId> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>com.fasterxml.jackson.module</groupId> | 
					
						
							|  |  |  | 			<artifactId>jackson-module-kotlin</artifactId> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2018-08-26 01:06:17 +05:30
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2018-07-14 21:24:33 +02:00
										 |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  | 			<artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>io.projectreactor</groupId> | 
					
						
							|  |  |  | 			<artifactId>reactor-test</artifactId> | 
					
						
							|  |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 	</dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<build> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<artifactId>kotlin-maven-plugin</artifactId> | 
					
						
							|  |  |  | 				<groupId>org.jetbrains.kotlin</groupId> | 
					
						
							| 
									
										
										
										
											2018-08-26 01:06:17 +05:30
										 |  |  | 				<version>${kotlin.version}</version> | 
					
						
							| 
									
										
										
										
											2018-07-14 21:24:33 +02:00
										 |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<args> | 
					
						
							|  |  |  | 						<arg>-Xjsr305=strict</arg> | 
					
						
							|  |  |  | 					</args> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 	</build> | 
					
						
							|  |  |  | </project> |