2023-08-30 19:58:17 +03:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns= "http://maven.apache.org/POM/4.0.0"
2023-10-19 15:24:46 +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" >
2023-08-30 19:58:17 +03:00
<modelVersion> 4.0.0</modelVersion>
<artifactId> core-java-21</artifactId>
<name> core-java-21</name>
<parent>
<groupId> com.baeldung.core-java-modules</groupId>
<artifactId> core-java-modules</artifactId>
<version> 0.0.1-SNAPSHOT</version>
</parent>
2023-09-25 06:02:12 +05:30
<build>
<plugins>
<plugin>
<groupId> org.apache.maven.plugins</groupId>
<artifactId> maven-compiler-plugin</artifactId>
<configuration>
<source> 21</source>
<target> 21</target>
2023-09-28 19:05:39 +03:00
<!-- Needed due to a bug with JDK 21, described here: https://issues.apache.org/jira/browse/MCOMPILER-546?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel&focusedCommentId=17767513 -->
<debug> false</debug>
<compilerArgs>
<arg> --enable-preview</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId> org.apache.maven.plugins</groupId>
<artifactId> maven-surefire-plugin</artifactId>
<configuration>
<argLine> --enable-preview</argLine>
2023-09-25 06:02:12 +05:30
</configuration>
</plugin>
2023-09-28 19:05:39 +03:00
2023-09-25 06:02:12 +05:30
</plugins>
</build>
2023-09-28 19:05:39 +03:00
2023-10-19 15:24:46 +05:30
<properties>
<maven.compiler.source.version> 21</maven.compiler.source.version>
<maven.compiler.target.version> 21</maven.compiler.target.version>
<project.build.sourceEncoding> UTF-8</project.build.sourceEncoding>
</properties>
2023-08-30 19:58:17 +03:00
</project>