You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2017/04/11 13:24:10 UTC

[2/2] syncope git commit: Do not disable extensions in the all Maven profile, for projects generated from archetype

Do not disable extensions in the all Maven profile, for projects generated from archetype


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/11026de0
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/11026de0
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/11026de0

Branch: refs/heads/master
Commit: 11026de062c9dbf3e2540275d0909f8255d53901
Parents: 4c2dd44
Author: Francesco Chicchiricc� <il...@apache.org>
Authored: Tue Apr 11 15:23:31 2017 +0200
Committer: Francesco Chicchiricc� <il...@apache.org>
Committed: Tue Apr 11 15:24:00 2017 +0200

----------------------------------------------------------------------
 .../archetype-resources/enduser/pom.xml          | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/11026de0/archetype/src/main/resources/archetype-resources/enduser/pom.xml
----------------------------------------------------------------------
diff --git a/archetype/src/main/resources/archetype-resources/enduser/pom.xml b/archetype/src/main/resources/archetype-resources/enduser/pom.xml
index 240dc2a..36bbf0a 100644
--- a/archetype/src/main/resources/archetype-resources/enduser/pom.xml
+++ b/archetype/src/main/resources/archetype-resources/enduser/pom.xml
@@ -330,7 +330,24 @@ under the License.
         </dependency>
       </dependencies>
       
-      <build>        
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <inherited>true</inherited>
+            <executions>
+              <execution>
+                <id>disableExtensions</id>
+                <phase>none</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+
         <resources>
           <resource>
             <directory>src/main/resources</directory>