3

私は実際に Jenkins 用のプラグインを開発しており、プラグインに Scala、Java、および Maven を統合したいと考えています。プラグインの一部を Java で開発しましたが、他の部分を Scala で開発したいと考えています。問題は、それらすべて (maven、Scala、および Java) を統合すると、scala maven プラグインから次のエラーが発生することです。

    [INFO] artifact org.kohsuke.stapler:stapler: checking for updates from scala
[INFO] D:\workspace\remote-deployment-new\src\main\java:-1: info: compiling
[INFO] D:\workspace\remote-deployment-new\target\generated-sources\localizer:-1: info: compiling
[INFO] Compiling 4 source files to D:\workspace\remote-deployment-new\target\classes at 1352200897840
[ERROR] D:\workspace\remote-deployment-new\src\main\java\com\ebiznext\plugins\RemoteDeployment.java:33: error: RemoteDep
loyment is already defined as package RemoteDeployment
[INFO] public class RemoteDeployment extends Plugin implements Action, ExtensionPoint, Describable<RemoteDeployment> {
[INFO]              ^
[ERROR] one error found
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 52.801s
[INFO] Finished at: Tue Nov 06 12:21:39 CET 2012
[INFO] Final Memory: 27M/370M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal net.alchim31.maven:scala-maven-plugin:3.1.0:compile (default) on project remote-deploymen
t-new: wrap: org.apache.commons.exec.ExecuteException: Process exited with an error: 1(Exit value: 1) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

RemoteDeploymentクラスがすでにパッケージとして定義されているというエラーを完全に理解しています。確かに、Jenkins 用のプラグインを開発するときに、たとえばRemoteDeploymentパッケージ com.ebiznext.plugins で定義されたクラスがある場合は、 のcom.ebiznext.plugins.RemoteDeployment下にパッケージを作成する必要があるためsrc/main/resourcesです。それはジェンキンスの慣習です。私はそれについて何もできません。

この問題を修正するにはどうすればよいですか?

これが私のPOMです:

<project>

<parent>
    <groupId>org.jenkins-ci.plugins</groupId>
    <artifactId>plugin</artifactId>
    <version>1.466</version><!-- which version of Jenkins is this plugin built 
        against? -->
</parent>
<groupId>com.ebiznext.plugins</groupId>
<artifactId>remote-deployment-new</artifactId>
<version>1.0</version>
<name>Remote Deployment</name>
<packaging>hpi</packaging>
    ....         
    <build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>net.alchim31.maven</groupId>
                <artifactId>scala-maven-plugin</artifactId>
                <version>3.1.0</version>
            </plugin>
        </plugins>
    </pluginManagement>
    <plugins>
        <plugin>
            <groupId>net.alchim31.maven</groupId>
            <artifactId>scala-maven-plugin</artifactId>
            <version>3.1.0</version>

            <executions>
                <execution>
                    <id>compile</id>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                    <phase>compile</phase>
                </execution>

                <execution>
                    <id>test-compile</id>
                    <goals>
                        <goal>testCompile</goal>
                    </goals>
                    <phase>test-compile</phase>
                </execution>
                <execution>
                    <phase>process-resources</phase>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
</project>
4

2 に答える 2