我試圖編譯Maven項目,但我得到以下錯誤:Maven構建沒有編譯
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:java (default-cli) on project storm-example: The parameters 'mainClass' for goal org.codehaus.mojo:exec-maven-plugin:1.6.0:java are missing or invalid -> [Help 1]
我是新來的實際Maven項目。事情是我沒有使用codehous.mojo插件。從我從不同的現有問題中看到,得到這個的人在構建中使用了mojo插件,但在我的情況下,我只需要maven-assembly-plugin。儘管沒有明確需要,我是否需要在每個Maven對象中使用mojo?
以下是我的Maven pom.xml文件
<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>com.learningstorm</groupId>
<artifactId>storm-example</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>storm-example</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-core</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass />
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我試圖把它拿出來,但它仍然不起作用。相同的錯誤消息。我使用'mvn compile exec:java -Dexec.classpathScope = compile'編譯它。相同的錯誤消息。你能告訴我如何在代碼中加入這個依賴關係嗎? – Mnemosyne
@Mnemosyne你確定它是完全一樣的錯誤信息嗎?因爲這個很明確。無論如何,你想要打包什麼?圖書館? – Aaron
@Mnemosyne現在我想你可能會因爲 jar -with-dependencies descriptorRef>錯誤。你不應該從使用頁面複製樣本,而是要閱讀它們的含義 –
Aaron