| 
									
										
										
										
											2020-01-01 17:38:39 +01: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> | 
					
						
							|  |  |  | 	<groupId>com.baeldung</groupId> | 
					
						
							|  |  |  | 	<artifactId>core-java-14</artifactId> | 
					
						
							|  |  |  | 	<version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 	<name>core-java-14</name> | 
					
						
							|  |  |  | 	<packaging>jar</packaging> | 
					
						
							|  |  |  | 	<url>http://maven.apache.org</url> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<parent> | 
					
						
							|  |  |  | 		<groupId>com.baeldung</groupId> | 
					
						
							|  |  |  | 		<artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  | 		<version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 		<relativePath>../../</relativePath> | 
					
						
							|  |  |  | 	</parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<build> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  | 				<version>${maven-compiler-plugin.version}</version> | 
					
						
							|  |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<source>${maven.compiler.source.version}</source> | 
					
						
							|  |  |  | 					<target>${maven.compiler.target.version}</target> | 
					
						
							|  |  |  | 					<compilerArgs> | 
					
						
							|  |  |  | 						<compilerArg> | 
					
						
							|  |  |  | 							--enable-preview | 
					
						
							|  |  |  | 						</compilerArg> | 
					
						
							|  |  |  | 					</compilerArgs> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-surefire-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2020-01-16 01:53:26 +05:30
										 |  |  | 				<version>${surefire.plugin.version}</version> | 
					
						
							| 
									
										
										
										
											2020-01-01 17:38:39 +01:00
										 |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<argLine>--enable-preview</argLine> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 	</build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<properties> | 
					
						
							|  |  |  | 		<maven.compiler.source.version>14</maven.compiler.source.version> | 
					
						
							|  |  |  | 		<maven.compiler.target.version>14</maven.compiler.target.version> | 
					
						
							| 
									
										
										
										
											2020-01-16 01:53:26 +05:30
										 |  |  |         <surefire.plugin.version>3.0.0-M3</surefire.plugin.version> | 
					
						
							| 
									
										
										
										
											2020-01-01 17:38:39 +01:00
										 |  |  | 	</properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |