我刚刚安装了 maven eclipse 插件,一切都很好。我已经尝试过创建我的第一个 mojo。设置完成后,它已经下载了所有必需的依赖项。
现在困扰我的是 Eclipse 无法解析这些org.apache.maven.plugins
类。
我的 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.blah.dalm.mojo</groupId>
<artifactId>assembly-mojo</artifactId>
<packaging>maven-plugin</packaging>
<name>Assembly Mojo</name>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>${basedir}</sourceDirectory>
<!-- Plugin Configurations -->
<plugins>
<!-- Compiler plugin to use 1.6 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<executions>
<execution>
</execution>
</executions>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</project>
我的 mojo 文件 AssemblyMojo.java:
package com.blah.dalm.mojo;
import java.util.List;
import org.apache.maven.plugin.MojoExecutionException; // <-- This is where it says it cannot resolve the class or package.
/**
* "Assemble Goal"
* @goal assemble-goal
* @author Husain Khambaty
*
*/
public class AssemblyMojo {
/**
* @parameter expression="${assembly.sourcePath}"
* @required
*/
private String sourcePath;
/**
* @parameter expression="${assembly.outputPath}"
* @required
*/
private String outputFilePath;
/**
* @parameter
*/
private List<String> excludeList;
/**
* @parameter
*/
private String filterRule;
public void execute() throws MojoExecutionException { // <-- And here
}
}
它无法解析 MojoExectionException 类(因此我相信它无法找到所需的 jar,我猜它应该在 Eclipse-Maven 集成后自动获取)。
当我构建它时,它构建得很好。