We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93995b8 commit 37aa424Copy full SHA for 37aa424
java-23/pom.xml
@@ -11,5 +11,22 @@
11
12
<artifactId>java-23</artifactId>
13
14
+ <properties>
15
+ <maven.compiler.source>23</maven.compiler.source>
16
+ <maven.compiler.target>23</maven.compiler.target>
17
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18
+ </properties>
19
+ <build>
20
+ <plugins>
21
+ <plugin>
22
+ <groupId>org.apache.maven.plugins</groupId>
23
+ <artifactId>maven-compiler-plugin</artifactId>
24
+ <configuration>
25
+ <compilerArgs>--enable-preview</compilerArgs>
26
+ </configuration>
27
+ </plugin>
28
+ </plugins>
29
+ </build>
30
+
31
32
</project>
0 commit comments