40

target/generated-sources/wrappers我有一个在目录下生成源的插件。它像这样连接到生成源阶段:

<plugin>
    <groupId>mygroupid</groupId>
    <artifactId>myartifactid</artifactId>
    <executions>
        <execution>
        <phase>generate-sources</phase>
        <goals>
            <goal>xml2java</goal>
        </goals>
        </execution>
    </executions>
</plugin>

问题是,当我使用文件时mvn deploy.class文件不会放在 jar 中。我看到.java那里的所有文件,但没有.class

我阅读了有关此问题的所有问题,但不知道如何解决该问题。我正在使用 Maven 3.0.x。

4

2 回答 2

79

build-helper 插件确实解决了这个问题。感谢@Joe 的评论。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <executions>
        <execution>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>${project.build.directory}/generated-sources/wrappers</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>
于 2013-10-30T12:43:42.500 回答
22

如果您自己编写了插件,则可以以编程方式将带有生成源的路径添加到 maven 源路径。

@Mojo(name = "generate")
public class MyCodegenMojo extends AbstractMojo {
    @Parameter(defaultValue = "${project}")
    private MavenProject project;

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException{
        // your generator code

        project.addCompileSourceRoot("path/to/your/generated/sources");
    }

}

例如 raml-jaxrs-codegen 插件使用这种技术。有关更多详细信息,请参阅RamlJaxrsCodegenMojo.java

于 2015-06-10T15:33:44.283 回答