我在这里获取有关如何打印 Mavenprovided
类路径的信息。我能够打印 mavencompile
和test
类runtime
路径,但我找不到提供的类路径的 refid。这是我发现对打印有用的资源compile
,test
以及runtime
maven 的类路径。
http://maven.apache.org/plugins/maven-antrun-plugin/examples/classpaths.html
对此有何建议?
我在这里获取有关如何打印 Mavenprovided
类路径的信息。我能够打印 mavencompile
和test
类runtime
路径,但我找不到提供的类路径的 refid。这是我发现对打印有用的资源compile
,test
以及runtime
maven 的类路径。
http://maven.apache.org/plugins/maven-antrun-plugin/examples/classpaths.html
对此有何建议?
根据定义,provided
范围内的工件是应用程序环境(Web 容器等)提供的东西 - 即构建完成后 Maven 不知道的东西。
但是,正如您可以在此处阅读的那样,您应该能够仅将compile
和test
类路径用于您的目的。