This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new 79e6fe4 Fix warning caused due to duplicate declaration of plugin -
pom.xml (#5568)
79e6fe4 is described below
commit 79e6fe47c877051304b6f39d3b6c7d14b2f91c78
Author: Pearl Dsilva <[email protected]>
AuthorDate: Tue Oct 12 10:10:53 2021 +0530
Fix warning caused due to duplicate declaration of plugin - pom.xml (#5568)
---
engine/schema/pom.xml | 47 ++++++++++++++++++++---------------------------
1 file changed, 20 insertions(+), 27 deletions(-)
diff --git a/engine/schema/pom.xml b/engine/schema/pom.xml
index acd49a9..bdeb0ae 100644
--- a/engine/schema/pom.xml
+++ b/engine/schema/pom.xml
@@ -80,33 +80,6 @@
</source>
</configuration>
</execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>com.googlecode.maven-download-plugin</groupId>
- <artifactId>download-maven-plugin</artifactId>
- <version>1.6.3</version>
- <executions>
- <execution>
- <id>download-checksums</id>
- <phase>validate</phase>
- <goals>
- <goal>wget</goal>
- </goals>
- <configuration>
-
<url>https://download.cloudstack.org/systemvm/${cs.version}/md5sum.txt</url>
-
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
- <skipCache>true</skipCache>
- <overwrite>true</overwrite>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.gmaven</groupId>
- <artifactId>gmaven-plugin</artifactId>
- <version>1.5</version>
- <executions>
<execution>
<id>set-properties</id>
<phase>generate-sources</phase>
@@ -138,6 +111,26 @@
</executions>
</plugin>
<plugin>
+ <groupId>com.googlecode.maven-download-plugin</groupId>
+ <artifactId>download-maven-plugin</artifactId>
+ <version>1.6.3</version>
+ <executions>
+ <execution>
+ <id>download-checksums</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+
<url>https://download.cloudstack.org/systemvm/${cs.version}/md5sum.txt</url>
+
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>