有没有办法从命令行向maven jetty插件中的类路径添加目录

问题描述 投票:1回答:3

我使用命令mvn jetty:run使用jetty插件与maven一起运行jetty。

是否有命令行选项将外部目录添加到类路径?有点像java -cp选项吗?

TIA

maven jetty maven-jetty-plugin
3个回答
1
投票

您是否尝试过此处建议的解决方案:

Adding classpath to jetty running in maven integration-test

<webAppConfig>
  <contextPath>/nportal</contextPath>
  <!-- All I want to do here is add in the /etc/jetty/classes for runtime files. For some reason I have to also add back in the /target/classes directory -->
  <extraClasspath>${basedir}/target/classes/;${basedir}/etc/jetty/classes/</extraClasspath>
</webAppConfig> 

1
投票

如果为extraClasspath定义Maven属性,则可以使用命令行系统属性传递自定义extraClasspath值。例如,如果您是POM,则具有以下内容:

<properties>
  <jetty.extraClasspath />
</properties>

...

<plugin>
  <groupId>org.eclipse.jetty</groupId>
  <artifactId>jetty-maven-plugin</artifactId>
  <version>9.4.14.v20181114</version>
  <configuration>
    <webApp>
      <extraClasspath>${jetty.extraClasspath}</extraClasspath>
    </webApp>
  </configuration>
</plugin>

您可以使用mvn jetty:run -Djetty.extraClasspath=../resources/指定额外的类路径。


0
投票

mvn jetty:help -Ddetail=true -Dgoal=run打印的内容来看,它看起来不可能来自命令行

© www.soinside.com 2019 - 2024. All rights reserved.