web-dev-qa-db-ja.com

Maven:同じ出力ディレクトリ内のアーティファクトから正確なファイルを解凍する方法は?

同じgroupId(org.webjars)、そしてそれらを解凍し、含まれているすべてのjsファイルを同じディレクトリにコピーする必要があります。

アーティファクトのアーカイブには、次のような階層(jarとして圧縮)があります。

artifact1
    - resources
        - webjars
            - ...
                - sample-1.js
                - sample-2.js

最後に、次のように、すべてのjsファイルを階層なしで同じディレクトリにコピーする必要があります。

outputDirectory
    - sample-1.js
    - sample-2.js
    - ...
    - sample-n.js

私が到達できる結果は次のとおりです:

outputDirectory
    - artifact-1
        - resources
            - webjars
                - ...
                    - sample-1.js
                    - sample-2.js
    - ...
    - artifact-m
        - resources
            - webjars
                - ...
                    - sample-n.js

この目的のために、私はmaven-dependency-plugin

<plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>unpack org.webjars dependencies</id>
            <goals>
                <goal>unpack-dependencies</goal>
            </goals>
            <configuration>
            <includeGroupIds>org.webjars</includeGroupIds>
            <includes>**/*.js</includes>
            <outputDirectory>${project.build.directory}/static</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

これを行うにはこのプラグインの魔法のオプションがありますか、それともジョブを完了するために別のプラグインが必要ですか?

編集:これが私が最後に使用したソリューションです:

<plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
        <execution>
            <id>copy org.webjars dependency to jar</id>
            <phase>package</phase>
            <goals><goal>run</goal></goals>
            <configuration>
                <target>
                    <copy todir="${project.build.directory}/classes/static" flatten="true">
                        <fileset dir="${project.build.directory}/static">
                                     <include name="**/*.js"/>
                        </fileset>
                    </copy>
                </target>
            </configuration>
          </execution>
    </executions>
</plugin>
<!-- Force the generation of the jar to be done after the javascript dependencies have been copied.
Note : This is a half solution, as the jar is generated twice: a first time before the javascript get copied, and
another one after. As a result, there is the correct jar, but after two creations... -->
<plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <executions>
        <execution>
            <id>Force the jar-plugin to be called after the javascripts dependencies have been copied to be embedded</id>
            <phase>package</phase>
            <goals><goal>jar</goal></goals>
           </execution>
       </executions>
</plugin>
17
Rémi Doolaeghe

次のスレッドで説明されているように、flattenオプションを指定したcopyタスクを使用してmaven antrunプラグインを使用できます。 Maven:サブディレクトリ構造のないファイルをコピーする

ベスト

6

同様の問題に遭遇しました(そして、私はMaven内で時代遅れのAntを実行するのがあまり好きではないので、この日と年齢) org.Apache.portals.jetspeed-2:jetspeed -unpack-maven-plugin (mvnrepository link here )。 <resource>構成では、必要に応じてディレクトリ構造をフラット化する<flat> true </ flat>オプションを指定できます。

1
user1932890

<useSubDirectoryPerArtifact>false</useSubDirectoryPerArtifact> を使用すると、少し近づくことができる場合があります。ただし、unpack-dependenciesの目標には、解凍したアーティファクトからのファイルの完全パスが含まれていると思います。

0
pioto