You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by mm...@apache.org on 2020/03/16 15:55:48 UTC

[syncope] 02/36: Skipping maven-remote-resources-plugin by default, keeping it enabled in the apache-release profile; for SNAPSHOT publishing we'll need to add -Dskip.maven-remote-resources-plugin=false

This is an automated email from the ASF dual-hosted git repository.

mmoayyed pushed a commit to branch SYNCOPE-1545
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit de75670b5d952a6de0c88967b4823f9ebf640f30
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Mar 3 09:45:18 2020 +0100

    Skipping maven-remote-resources-plugin by default, keeping it enabled in the apache-release profile; for SNAPSHOT publishing we'll need to add -Dskip.maven-remote-resources-plugin=false
---
 wa/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/wa/pom.xml b/wa/pom.xml
index aa8216d..2200324 100644
--- a/wa/pom.xml
+++ b/wa/pom.xml
@@ -40,6 +40,7 @@ under the License.
     <bootstrap-select.version>1.13.11</bootstrap-select.version>
     <slf4j.version>1.8.0-beta4</slf4j.version>
 
+    <skip.maven-remote-resources-plugin>true</skip.maven-remote-resources-plugin>
     <rootpom.basedir>${basedir}/..</rootpom.basedir>
   </properties>
 
@@ -220,6 +221,14 @@ under the License.
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
       </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <configuration>
+          <skip>${skip.maven-remote-resources-plugin}</skip>
+        </configuration>
+      </plugin>
     </plugins>
 
     <resources>
@@ -308,5 +317,13 @@ under the License.
         </plugins>
       </build>
     </profile>
+
+    <profile>
+      <id>apache-release</id>
+
+      <properties>
+        <skip.maven-remote-resources-plugin>false</skip.maven-remote-resources-plugin>
+      </properties>
+    </profile>
   </profiles>
 </project>