You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2020/11/27 18:13:17 UTC

[myfaces-tobago] branch master updated: Delete nodejs directories with Maven

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

hnoeth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new 24f51ab  Delete nodejs directories with Maven
24f51ab is described below

commit 24f51abf9cf2fb7c18ec7f2815d549405f24b8b2
Author: Henning Nöth <hn...@apache.org>
AuthorDate: Fri Nov 27 15:50:07 2020 +0100

    Delete nodejs directories with Maven
    
    * The nodejs directories are deleted with 'mvn clean -Pfrontend'
    * nodejs directories are: dist, node, node_modules
---
 pom.xml | 35 ++++++++++++++++++-----------------
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1ff994b..d6a2a73d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -881,23 +881,6 @@
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-clean-plugin</artifactId>
-          <version>3.1.0</version>
-          <configuration>
-            <filesets>
-              <fileset>
-                <directory>npm</directory>
-                <includes>
-                  <include>node/**</include>
-                  <include>node_modules/**</include>
-                </includes>
-                <followSymlinks>false</followSymlinks>
-              </fileset>
-            </filesets>
-          </configuration>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-source-plugin</artifactId>
           <version>3.0.1</version>
         </plugin>
@@ -1197,6 +1180,24 @@
       <build>
         <plugins>
           <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-clean-plugin</artifactId>
+            <version>3.1.0</version>
+            <configuration>
+              <filesets>
+                <fileset>
+                  <directory>npm</directory>
+                  <includes>
+                    <include>dist/**</include>
+                    <include>node/**</include>
+                    <include>node_modules/**</include>
+                  </includes>
+                  <followSymlinks>false</followSymlinks>
+                </fileset>
+              </filesets>
+            </configuration>
+          </plugin>
+          <plugin>
             <groupId>com.github.eirslett</groupId>
             <artifactId>frontend-maven-plugin</artifactId>
             <version>1.10.0</version>