第1步
可以使用以下 maven 配置来编译代码,--enable-preview
并使用--release 12
+(例如13
, 14
)15
参数。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>12</release> <!-- <release>13/14/15</release> -->
<compilerArgs>--enable-preview</compilerArgs>
</configuration>
</plugin>
<!-- This is just to make sure the class is set as main class to execute from the jar-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>edu.forty.bits.expression.SwitchExpressions</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
注意:-我还必须确保在我的 MacOS 上我的~/.mavenrc
文件配置为将 java 13 标记为为 maven 配置的默认 java。
第2步
执行maven命令从模块类构建jar
mvn clean verify
第 3 步
使用命令行执行上一步创建的jar的主类为:
java --enable-preview -jar target/forty-bits-of-java-1.0.0-SNAPSHOT.jar
最后一个参数是maven构建的jar的路径。
这会产生预期的输出:
(屏幕截图来自之前的执行。)
来源在 GitHub
编辑:从不需要的调试会话中学习,使用格式如下的参数:
<compilerArgs>
<arg>--enable-preview</arg>
</compilerArgs>
原因是,如果您指定两个不同的参数,它在配置验证期间不会失败,并且稍后找到的参数会否决有效配置:
<compilerArgs>--enable-preview</compilerArgs>
<compilerArgs>-Xlint:all</compilerArgs>