diff options
author | Bogumil Zebek <bogumil.zebek@nokia.com> | 2020-02-21 08:10:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-21 08:10:10 +0000 |
commit | 0474f5347007cf6c04cb01f84b83fc2edd6fbc59 (patch) | |
tree | 900957e08f35b64461e892264b072fddb2c1c823 /certServiceClient | |
parent | 7831ee84ae44f14964739fe0d291074a885768dd (diff) | |
parent | 272a9a96a2cbb389c2523b694a5f99e8ecf3e5e3 (diff) |
Merge "Plugins reorder"
Diffstat (limited to 'certServiceClient')
-rw-r--r-- | certServiceClient/pom.xml | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/certServiceClient/pom.xml b/certServiceClient/pom.xml index f32501bf..bd51d73e 100644 --- a/certServiceClient/pom.xml +++ b/certServiceClient/pom.xml @@ -46,6 +46,26 @@ <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>${maven-shade-plugin.version}</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <transformers> + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + <mainClass>org.onap.aaf.certservice.client.CertServiceClientApp</mainClass> + </transformer> + </transformers> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>${docker-maven-plugin.version}</version> @@ -87,26 +107,6 @@ </images> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-shade-plugin</artifactId> - <version>3.2.2</version> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>shade</goal> - </goals> - <configuration> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> - <mainClass>org.onap.aaf.certservice.client.CertServiceClientApp</mainClass> - </transformer> - </transformers> - </configuration> - </execution> - </executions> - </plugin> </plugins> </build> </profile> |