| 
									
										
										
										
											2021-07-15 06:18:47 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |     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>core-java-16</artifactId> | 
					
						
							|  |  |  |     <packaging>jar</packaging> | 
					
						
							| 
									
										
										
										
											2024-03-15 21:27:32 +05:30
										 |  |  |     <name>core-java-16</name> | 
					
						
							| 
									
										
										
										
											2021-07-15 06:18:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  |         <relativePath>../../</relativePath> | 
					
						
							|  |  |  |     </parent> | 
					
						
							| 
									
										
										
										
											2021-07-15 06:18:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |             <artifactId>commons-lang3</artifactId> | 
					
						
							| 
									
										
										
										
											2021-11-16 15:10:49 +01:00
										 |  |  |             <version>${commons-lang3.version}</version> | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							| 
									
										
										
										
											2021-07-15 06:18:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							| 
									
										
										
										
											2021-09-22 08:33:17 +01:00
										 |  |  |                     <release>${maven.compiler.release}</release> | 
					
						
							| 
									
										
										
										
											2021-11-09 16:27:03 +05:30
										 |  |  |                     <compilerArgs>--enable-preview</compilerArgs> | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |                     <source>${maven.compiler.source.version}</source> | 
					
						
							|  |  |  |                     <target>${maven.compiler.target.version}</target> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							| 
									
										
										
										
											2021-11-09 16:27:03 +05:30
										 |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-surefire-plugin</artifactId> | 
					
						
							|  |  |  |                 <version>${surefire.plugin.version}</version> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <argLine>--enable-preview</argLine> | 
					
						
							|  |  |  |                     <forkCount>1</forkCount> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |                 <dependencies> | 
					
						
							|  |  |  |                     <dependency> | 
					
						
							|  |  |  |                         <groupId>org.apache.maven.surefire</groupId> | 
					
						
							|  |  |  |                         <artifactId>surefire-api</artifactId> | 
					
						
							|  |  |  |                         <version>${surefire.plugin.version}</version> | 
					
						
							|  |  |  |                     </dependency> | 
					
						
							|  |  |  |                 </dependencies> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							| 
									
										
										
										
											2021-07-15 06:18:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |     <properties> | 
					
						
							|  |  |  |         <maven.compiler.source.version>16</maven.compiler.source.version> | 
					
						
							|  |  |  |         <maven.compiler.target.version>16</maven.compiler.target.version> | 
					
						
							| 
									
										
										
										
											2021-11-09 16:27:03 +05:30
										 |  |  |         <maven.compiler.release>16</maven.compiler.release> | 
					
						
							|  |  |  |         <surefire.plugin.version>3.0.0-M5</surefire.plugin.version> | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  |     </properties> | 
					
						
							| 
									
										
										
										
											2021-07-15 06:18:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-13 02:56:43 +00:00
										 |  |  | </project> |