この種のことを行う最良の方法は、Groovyスクリプトを独自のjarファイルに入れて、maven-dependency-plugin
解凍してもらうことです。次に、スクリプトは解凍されたスクリプトを指すことができます。
この例のように:
directory layout
+- pom.xml
+- script
| +- pom.xml
| +- src
| +- main
| +- resources
| +-computeProperties.groovy
+- code
+- pom.xml
+- src
+- main
+- java
pom.xml
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.stackoverflow</groupId>
<artifactId>Q11321971</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.artifactId}-${project.version}</name>
<properties>
</properties>
<modules>
<module>script</module>
<module>code</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Inter-Module dependencies -->
<dependency>
<groupId>com.stackoverflow</groupId>
<artifactId>Q11321971-script</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>unpack</id>
<phase>validate</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.stackoverflow</groupId>
<artifactId>Q11321971-script</artifactId>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/build/groovy</outputDirectory>
<includes>**/*.groovy</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
script/pom.xml
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.stackoverflow</groupId>
<artifactId>Q11321971</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>Q11321971-script</artifactId>
<name>${project.artifactId}-${project.version}</name>
</project>
code/pom.xml
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.stackoverflow</groupId>
<artifactId>Q11321971</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>Q11321971-code</artifactId>
<name>${project.artifactId}-${project.version}</name>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
このトップpomを実行すると、モジュールのtarget
ディレクトリにプラグインで参照できるようになっていることがわかります。code
build/groovy/computeProperties.groovy
<build/>
これは、これを親のタグに追加することにより、親pomに対してもすべてのモジュールで機能します。
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
</build>
これで、親にはtarget
ディレクトリが含まbuild/groovy/computeProperties.groovy
れるようになります。
プラグインでは、を次のように変更できます<scriptPath/>
。
<scriptPath>${project.build.directory}/build/groovy</scriptPath>
また、maven-dependency-plugin
は現在フェーズで実行されているため、後のvalidate
フェーズgmaven-plugin
で実行する必要があります。それはあなたが望むように作り上げることができるものです。
この方法で行うことの非常に良い点は、誰かが子モジュールをチェックアウトしたいだけの場合、それを実行でき、スクリプトjarがリポジトリからダウンロードされて使用されることです。
相対パスは必要ありません...