77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			77 lines
		
	
	
		
			2.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>core-java-15</artifactId> | ||
|  |     <name>core-java-15</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>../../pom.xml</relativePath> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.commons</groupId> | ||
|  |             <artifactId>commons-lang3</artifactId> | ||
|  |             <version>${apache-commons-lang3.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.assertj</groupId> | ||
|  |             <artifactId>assertj-core</artifactId> | ||
|  |             <version>${assertj.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.junit.jupiter</groupId> | ||
|  |             <artifactId>junit-jupiter-engine</artifactId> | ||
|  |             <version>${junit-jupiter.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.junit.jupiter</groupId> | ||
|  |             <artifactId>junit-jupiter-api</artifactId> | ||
|  |             <version>${junit-jupiter.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-compiler-plugin</artifactId> | ||
|  |                 <version>${maven-compiler-plugin.version}</version> | ||
|  |                 <configuration> | ||
|  |                     <release>${maven.compiler.release}</release> | ||
|  |                     <compilerArgs>--enable-preview</compilerArgs> | ||
|  |                     <source>15</source> | ||
|  |                     <target>15</target> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-surefire-plugin</artifactId> | ||
|  |                 <version>${surefire.plugin.version}</version> | ||
|  |                 <configuration> | ||
|  |                     <argLine>--enable-preview</argLine> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <maven.compiler.release>15</maven.compiler.release> | ||
|  |         <apache-commons-lang3.version>3.11</apache-commons-lang3.version> | ||
|  |         <assertj.version>3.17.2</assertj.version> | ||
|  |         <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> | ||
|  |         <surefire.plugin.version>3.0.0-M3</surefire.plugin.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |