Maven Build 不包括 jar 中的.class文件

2022-09-01 22:19:09

我已经查看了我在StackOverflow上找到的所有内容,但我找不到答案。我刚刚建造了一台新机器,我有一些项目可以在以前的安装基础上编译和构建。但我的新机器不会。所有内容似乎都已正确生成(没有生成错误,依赖项已正确包含),但项目中的实际类文件(我编写的代码)未包含在jar中。然后,我创建了一个简单的helloWorld项目,其中包含一些最小的POM文件,以查看问题仍然存在。我从命令行进行了构建,以将eclipse从等式中剔除。

类代码

package com.zoverge.utils;

public class HelloWorld {

    /**
     * @param args
     */
    public static void main(String[] args) {
        String message = args[0];
        System.out.println(message);
    }

}

我的 POM 文件

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.zoverge.utils</groupId>
  <artifactId>helloworld</artifactId>
  <packaging>jar</packaging>
  <version>1.0</version>
  <name>Hello World</name>
  <url>http://maven.apache.org</url>
  <properties>
            <project.build.java.version>1.6</project.build.java.version>
            <org.apache.maven.plugins.maven-compiler-plugin.version>2.5.1</org.apache.maven.plugins.maven-compiler-plugin.version>          
  </properties>
  <build>
        <plugins>
            <!-- Maven will compile our source java classes using the "project.build.java.version" 
                specified -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${org.apache.maven.plugins.maven-compiler-plugin.version}</version>
                <configuration>
                    <source>${project.build.java.version}</source>
                    <target>${project.build.java.version}</target>
                </configuration>
            </plugin>
  <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          <archive>
            <manifest>
              <mainClass>com.zoverge.utils.HelloWorld</mainClass>
            </manifest>
          </archive>
                <finalName>HelloWorld</finalName>
                <appendAssemblyId>false</appendAssemblyId>
        </configuration>
        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
  </plugins>
  </build>
<dependencies/>
</project>

生成的版本生成 2 个 jar 文件(如预期的那样)helloworld-1.0.jar 和 HelloWorld.jar。这两个 jar 都不包含 HelloWorld.java 的已编译类文件。我认为这一定是我的环境的一个问题,因为对于在其他开发计算机上工作正常的其他项目来说,这种行为是相同的,但我似乎无法弄清楚其中的区别。我无权访问以前的开发计算机来比较配置。我的 .m2/set.xml 基本上是空的。

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository>${user.home}/.m2/repository</localRepository>
  <interactiveMode/>
  <usePluginRegistry/>
  <offline/>
  <pluginGroups/>
  <servers/>
  <mirrors/>
  <proxies/>
  <profiles/>
  <activeProfiles/>
</settings>

答案 1

我发现了我的问题。问题在于文件夹结构。Maven 假设有一个 /src/main/java/ 结构。我的结构是不同的,在POM.xml没有被覆盖。匹配标准路径或覆盖 POM 中的路径.xml修复了问题。


答案 2

推荐