Maven 不下载依赖项

Maven not downloading dependencies

我正在尝试让 Maven 下载依赖项。我正在使用我认为您应该使用的命令,这只是纯命令行,没有 IDE 参与,但它仍然没有发生。

问题也出在我自己的项目上,但我将以其他人的项目为例:https://github.com/stephanrauh/BeyondJava.net-Articles/tree/master/MethodModificationWithASM

我试过以下命令:

mvn compile
mvn test
mvn package
mvn install
mvn dependency:resolve

并且所有 运行 看起来都是正确的,甚至声称已成功下载依赖项:

[INFO]
[INFO] The following files have been resolved:
[INFO]    javassist:javassist:jar:3.12.1.GA:compile
[INFO]    org.ow2.asm:asm:jar:5.0.3:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  16.690 s
[INFO] Finished at: 2020-01-13T16:13:34Z
[INFO] ------------------------------------------------------------------------

但是当我尝试实际 运行 编译程序时,我得到一个错误:

C:\BeyondJava.net-Articles\MethodModificationWithASM>java -jar target\MethodModificationWithASM-0.0.1-SNAPSHOT.jar
Error: Unable to initialize main class de.beyondjava.demos.bytecode.Main
Caused by: java.lang.NoClassDefFoundError: org/objectweb/asm/ClassVisitor

当我尝试从 .class 文件而不是 jar 中 运行 时也是如此。并且错误是正确的:asm jar 实际上丢失了:

C:\BeyondJava.net-Articles\MethodModificationWithASM>dir /s *.jar
 Volume in drive C is Windows
 Volume Serial Number is 04EE-7EB0

 Directory of C:\BeyondJava.net-Articles\MethodModificationWithASM\target

13/01/2020  16:01             8,144 MethodModificationWithASM-0.0.1-SNAPSHOT.jar
               1 File(s)          8,144 bytes

     Total Files Listed:
               1 File(s)          8,144 bytes
               0 Dir(s)  164,672,442,368 bytes free

它也没有被藏到其他地方;我搜索了整个硬盘。

pom.xml 似乎指定了依赖关系,Maven 似乎很高兴它这样做了:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>de.beyondjava.demos.bytecode</groupId>
  <artifactId>MethodModificationWithASM</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>MethodModificationWithASM</name>
  <description>This demo shows how to create and run byte code in a Java program.
</description>
  <dependencies>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm</artifactId>
      <version>5.0.3</version>
    </dependency>
    <dependency>
      <groupId>javassist</groupId>
      <artifactId>javassist</artifactId>
      <version>3.12.1.GA</version>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

那我错过了什么?

您不能只 运行 没有适当类路径的命令行上的 jar。 Maven 将工件下载到您的主目录中的 .m2/repository 并将它们用于构建,但它不会将它们复制到目标或将它们添加到生成的 jar。

大多数 jar 都用作库,对于它们来说,行为很好。如果你想从命令行 运行 一个 jar,最好创建一个具有依赖关系的 jar:

How can I create an executable JAR with dependencies using Maven?