aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-02-21 08:10:10 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-21 08:10:10 +0000
commit0474f5347007cf6c04cb01f84b83fc2edd6fbc59 (patch)
tree900957e08f35b64461e892264b072fddb2c1c823
parent7831ee84ae44f14964739fe0d291074a885768dd (diff)
parent272a9a96a2cbb389c2523b694a5f99e8ecf3e5e3 (diff)
Merge "Plugins reorder"
-rw-r--r--certServiceClient/pom.xml40
-rw-r--r--pom.xml1
2 files changed, 21 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>
diff --git a/pom.xml b/pom.xml
index ef1fc849..010a6342 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,6 +56,7 @@
<docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
<junit.version>5.5.2</junit.version>
<mockito-junit-jupiter.version>2.17.0</mockito-junit-jupiter.version>
+ <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version>
<!-- Docker -->
<skipDockerPush>true</skipDockerPush>