diff options
author | Jim Hahn <jrh3@att.com> | 2021-03-08 14:27:34 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-03-11 13:27:43 -0500 |
commit | 8da51100a7d1ba19db49521433b96c8032903954 (patch) | |
tree | 2fd76b13ebd30f68c6daa5d82fd598f0c6242b72 | |
parent | ffb74ac019aae806a4465bc0ddf9925b67fea905 (diff) |
Address plugin-not-found issues
Make archetype an extension instead of a plug-in per various web
comments:
https://github.com/oracle/helidon/issues/1025
Issue-ID: POLICY-3126
Change-Id: I6703d832065d3b08fbc3c6613e049c30d2ee2c50
Signed-off-by: Jim Hahn <jrh3@att.com>
-rw-r--r-- | integration/pom.xml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 8c728089..c513d731 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -540,6 +540,13 @@ </scm> <build> + <extensions> + <extension> + <groupId>org.apache.maven.archetype</groupId> + <artifactId>archetype-packaging</artifactId> + <version>3.2.0</version> + </extension> + </extensions> <pluginManagement> <plugins> <plugin> @@ -611,11 +618,6 @@ <version>3.2.0</version> </plugin> <plugin> - <groupId>org.apache.maven.archetype</groupId> - <artifactId>archetype-packaging</artifactId> - <version>3.2.0</version> - </plugin> - <plugin> <groupId>com.coderplus.maven.plugins</groupId> <artifactId>copy-rename-maven-plugin</artifactId> <version>1.0.1</version> |