在Maven中,如何输出正在使用的类路径



对于我目前的目的,我有一个创建war文件的Maven项目,我想看看它在创建war时使用的实际类路径。有没有一种方法可以在一个命令中做到这一点,而不必编译整个项目?

一个想法是让Maven生成target/classpath.properties文件,然后停止在这一点。

要在文件中单独获取类路径,可以:

mvn dependency:build-classpath -Dmdep.outputFile=cp.txt

或者添加到POM.XML:

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.9</version>
        <executions>
          <execution>
            <id>build-classpath</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>build-classpath</goal>
            </goals>
            <configuration>
              <!-- configure the plugin here -->
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  [...]
</project>

From: http://maven.apache.org/plugins/maven-dependency-plugin/usage.html

此命令输出 Mac和Linux上的类路径:

mvn -q exec:exec -Dexec.executable=echo -Dexec.args="%classpath"

打印结果而不保存到文件中可能很有用,例如,在Bash脚本中将结果赋值给变量时。这个解决方案只能在Mac和Linux上运行,但是Bash shell脚本也可以。

在Windows中(例如在BAT文件中),没有echo可执行文件,您将需要这样的东西(未经测试):

mvn -q exec:exec -Dexec.executable=cmd -Dexec.args="/c echo %classpath"

或者,您可以使用类路径执行java程序:

mvn -q exec:exec -Dexec.executable=java -Dexec.args="-cp %classpath Main"

或者甚至像这样(它会自动使用正确的类路径):

mvn -q exec:java -Dexec.mainClass="Main" 

但是,当您的程序失败时,这两种替代方法都会受到Maven添加错误消息的影响。

或叫"mvn - e - x…",检查输出…

正如ecerulm在他对Janik的回答的评论中指出的那样,您可能希望将作用域指定为dependency:build-classpath,因为不同作用域的类路径输出会有所不同(由于某种原因默认使用test)。我最后得到这样一个命令:

mvn -DincludeScope=compile dependency:build-classpath

在POM中,它可以这样使用:

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.9</version>
        <executions>
          <execution>
            <id>build-classpath</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>build-classpath</goal>
            </goals>
            <configuration>
              <includeScope>compile</includeScope>
              <!-- Omit to print on console: -->
              <outputFile>${project.build.directory}/compile-classpath.txt</outputFile>
            </configuration>
          </execution>
          <execution>
            <id>build-test-classpath</id>
            <phase>generate-test-sources</phase>
            <goals>
              <goal>build-classpath</goal>
            </goals>
            <configuration>
              <includeScope>test</includeScope>
              <!-- Omit to print on console: -->
              <outputFile>${project.build.directory}/test-classpath.txt</outputFile>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  [...]
</project>

这将输出两个版本的classpath,一个用于主构建,另一个用于测试。

命令mvn dependency:list将以以下格式列出用于编译、运行和测试的所有jar的类路径:

INFO] --- maven-dependency-plugin:2.8:list (default-cli) @ MyProject ---
[INFO]
[INFO] The following files have been resolved:
[INFO]    org.netbeans.api:org-openide-filesystems:jar:RELEASE80:compile
[INFO]    org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE80:compile
[INFO]    org.netbeans.api:org-netbeans-api-progress:jar:RELEASE80:compile
[INFO]    org.netbeans.api:org-openide-dialogs:jar:RELEASE80:compile
[INFO]    org.apache.derby:derby:jar:10.11.1.1:compile
[INFO]    org.netbeans.api:org-openide-windows:jar:RELEASE80:compile

唯一的要求是编译已经完成。如果不运行编译,它将不起作用。

mvn dependency:tree .

在janik的回答中添加了scope字段。现在它完成了。不客气

mvn -q exec:exec -Dexec.classpathScope="compile" -Dexec.executable="echo" -Dexec.args="%classpath" 

这是一个单命令解决方案但是确实编译了代码

mvn -e -X -Dmaven.test.skip=true clean compile | grep -o -P '-classpath .*? ' | awk '{print $2}'
  • 这是基于Philip Helger之前的回答(顺便感谢)

Shell脚本示例用法

MAVEN_CLASSPATH=$(mvn -e -X -Dmaven.test.skip=true clean compile | grep -o -P '-classpath .*? ' | awk '{print $2}')

我在shell脚本中使用了它的一个变体,以这种方式运行独立的main()(用于Hibernate模式生成)

#/bin/bash
MAVEN_TEST_CLASSPATH=$(mvn -e -X clean package | grep -o -P '-classpath .*?test.*? ')
java $MAVEN_TEST_CLASSPATH foo.bar.DBSchemaCreate

文件输出示例

mvn -e -X -Dmaven.test.skip=true clean compile | grep -o -P '-classpath .*? ' | awk '{print $2}' > maven.classpath

相关内容

  • 没有找到相关文章

最新更新