16

マルチモジュールの Maven プロジェクトがあり、アセンブリ プラグインのモジュールセット ソース部分を機能させようとしています。

モジュール「module_parent」、「module_a」、および「module_assembly」があります。

module_amodule_assemblymodule_parentの子です。

module_assemblyには、 module_a に対するpom 依存関係が宣言されています。

module_assmeblyにはアセンブリ プラグインがあり、assembly.xml は次のようになります。

<?xml version="1.0"?>
<assembly>
  <id>bin</id>
  <formats>
    <format>zip</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <moduleSets>
    <moduleSet>
      <useAllReactorProjects>true</useAllReactorProjects>
      <includes>
        <include>com.mystuff:module_a</include>
      </includes>
      <sources>
        <fileSets>
          <fileSet>
            <outputDirectory>/</outputDirectory>
            <excludes>
              <exclude>**/target/**</exclude>
            </excludes>
            <directory>/</directory>
          </fileSet>
        </fileSets>
      </sources>
    </moduleSet>
  </moduleSets>
</assembly> <!-- -->

module_a の module_assembly に明示的な依存関係があります。module_assembly の pom の依存関係は次のようになります。

<dependencies>
    <dependency>
        <groupId>com.mystuff</groupId>
        <artifactId>module_a</artifactId>
        <version>1.0</version>
        <type>pom</type>
    </dependency>
</dependencies>

デバッグがオンになっている mvn パッケージから得られるエラーは次のとおりです。

[DEBUG] All known ContainerDescritporHandler components: [metaInf-services, plexus, metaInf-spring, file-aggregator]
[DEBUG] No dependency sets specified.
[WARNING] The following patterns were never triggered in this artifact inclusion filter:
o  'com.mystuff:module_a'

[DEBUG] Cannot find ArtifactResolver with hint: project-cache-aware
org.codehaus.plexus.component.repository.exception.ComponentLookupException: java.util.NoSuchElementException
      role: org.apache.maven.artifact.resolver.ArtifactResolver
  roleHint: project-cache-aware
        at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:257)
        at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:233)
        at
  <snip>
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: java.util.NoSuchElementException
        at java.util.Collections$EmptyIterator.next(Collections.java:3006)
        at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:253)
        ... 43 more
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
<snip>
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.2:single (make-assembly) on project apm-server-distribution: Failed to create assembly: Error creating assembly archive bin: You must set at least one file. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.2:single (make-assembly) on project apm-server-distribution: Failed to create assembly: Error creating assembly archive bin: You must set at least one file.

主な問題は次の警告行だと思います。

[WARNING] The following patterns were never triggered in this artifact inclusion filter:
    o  'com.mystuff:module_a'

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

4

4 に答える 4

2

同様の問題があるため、アセンブリプラグインをデバッグしているだけで、問題は<useAllReactorProjects>true</useAllReactorProjects>. その上に、おそらく必要なものであるタグもあり<includeSubModules>ます。

<assembly>
  <id>bin</id>
  <formats>
    <format>zip</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <moduleSets>
    <moduleSet>
      <useAllReactorProjects>false</useAllReactorProjects><!-- Or just don't remove this line -->
      <includeSubModules>true>
...
    </moduleSet>
  </moduleSets>
</assembly
于 2014-10-21T12:10:17.717 に答える
1

module_aはmodule_assemblyのサブモジュールではないため、試みていることは機能しません。

できることのいくつかのアイデアを次に示します。

  • 関連ファイルを jar に含め (ソース プラグインが役立つ場合があります)、dependencySet を使用します。
  • module_assemblyが親で、module_parentmodule_aがサブモジュールになるように、モジュール構造を変更します。もちろん、依存構造はそのままです。
  • 他のプロジェクトを指す相対パスを持つアセンブリでファイルセットを使用するだけです(醜い!)
于 2013-07-10T21:18:36.897 に答える