プロジェクト内の追加のディレクトリを削除するように maven clean プラグインを構成しようとしていますが、正しく機能していません。これはmaven 3.5を使用した簡単な再現です。
簡単なデモアプリで始めましょう: https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
を変更しpom.xml
て設定しますmaven-clean-plugin
。
<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.mycompany.app</groupId>
<artifactId>my-app</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Maven Quick Start Archetype</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<verbose>true</verbose>
<fieldsets>
<fieldset>
<directory>${basedir}</directory>
<includes>
<include>demo/**</include>
</includes>
</fieldset>
</fieldsets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
という名前のダミー ディレクトリを作成します。demo
mkdir demo && touch demo/hello
今実行します:
mvn package
mvn clean
demo
ディレクトリがまだ存在していることに気付くでしょう。これがなぜなのかわかりません。私はこれらのSO記事を読みました:
そして、目標、フェーズ、およびIDのさまざまな順列を実行しようとしました:
clean
clean:clean
clean:auto-clean
などなど無駄に…
モジョに何が渡されたかを確認するために、簡単な健全性チェックを行いました。
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator -->
[DEBUG] (f) directory = /Users/djthomps/Desktop/test/target
[DEBUG] (f) excludeDefaultDirectories = false
[DEBUG] (f) failOnError = true
[DEBUG] (f) followSymLinks = false
[DEBUG] (f) outputDirectory = /Users/djthomps/Desktop/test/target/classes
[DEBUG] (f) reportDirectory = /Users/djthomps/Desktop/test/target/classes
[DEBUG] (f) retryOnError = true
[DEBUG] (f) skip = false
[DEBUG] (f) testOutputDirectory = /Users/djthomps/Desktop/test/target/test-classes
[DEBUG] (f) verbose = true
[DEBUG] -- end configuration --
構成オプションが設定されていないようです。なんで?
注: プラグインのドキュメントも読みました: https://maven.apache.org/plugins/maven-clean-plugin/examples/delete_additional_files.html。私がやりたいことを理解していることから、私は可能です。