maven-assembly-plugin:3.1.1 が pom.xml に見つからない場合、マスター pom.xml には maven-assembly-plugin の読み取り専用エントリ (2.2-beta-5) があります。AppData ディレクトリにあるマスター pom.xml のバージョンを変更するにはどうすればよいですか?
コード スニペット: pom.xml:
<profile>
<id>setup</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<finalName>xxx</finalName>
<descriptors>
<descriptor>src/assembly/setup.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>