パッケージ以上で、プロジェクト全体を(たとえば、zipファイルに)アセンブルしてターゲットに配置するだけのPOMを作成することは可能ですか?
この場合、プロジェクトにはJavaコードが含まれていません。これは、パッケージ化したいスクリプトとファイルのセットにすぎません。統一性を保つために(当店はすべてMavenであるため)、現在、シェルスクリプトを使用しているため、POMにこれを実行してもらいたいと思います。
例をいただければ幸いです。
ありがとう
だから私は次のようになりました、それはでファイルを作成し、それはServerSetupTools-0.1-SNAPSHOT.tar.gz
私target
のために働きます。唯一の欠点は、ファイルがルートディレクトリにあるときにファイルをプルする方法がわからなかったため、すべてをに移動しsrc/main/resources
ました。これも機能しました。うまくいけば、これは他の誰かを助けるでしょう。
POMファイル:
<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>
<artifactId>ServerSetupTools</artifactId>
<packaging>pom</packaging>
<name>ServerSetupTools</name>
<url>http://maven.apache.org</url>
<groupId>com.mycompany.utilities</groupId>
<version>0.1-SNAPSHOT</version>
<build>
<plugins>
<!-- Run assembly as part of packaging -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>
src/main/assembly/assemble.xml
</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase><!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
src/main/assembly/assemble.xml
:
<assembly xmlns="http://maven.apache.org/xsd/assembly"
xsi:schemaLocation="http://maven.apache.org/xsd/assembly-1.0.0.xsd">
<id>dist</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<includes>
<include>*</include>
</includes>
<directory>src/main/resources</directory>
<outputDirectory>bin</outputDirectory>
<fileMode>0755</fileMode>
</fileSet>
</fileSets>