--add-exports在maven中加在哪
时间: 2023-12-29 19:02:13 浏览: 291
exports-loader:出口装载机
在 Maven 中,可以通过在 pom.xml 文件中配置 maven-compiler-plugin 插件来添加 --add-exports 编译参数。
以下是在 Maven 中配置 --add-exports 的示例:
```xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<compilerArgs>
<arg>--add-exports</arg>
<arg>module.name/pkg=other.module.name</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
```
在上面的示例中,module.name/pkg 表示需要暴露的包名,other.module.name 表示需要访问该包的模块名。可以按照实际情况修改这两个参数。
注意,如果需要添加多个 --add-exports 参数,可以在 compilerArgs 中添加多个 arg 标签。
在使用 Maven 编译 Java 9 以上版本的代码时,建议使用 maven-compiler-plugin 插件来配置编译参数,以避免出现冲突或其他问题。
阅读全文