mirror of
https://github.com/Alfresco/alfresco-sdk.git
synced 2025-10-01 14:41:57 +00:00
Comment out AMP assembly by default
This commit is contained in:
@@ -164,7 +164,14 @@
|
|||||||
<build>
|
<build>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<!-- Build an AMP if 3rd party libs are needed by the extensions -->
|
<!--
|
||||||
|
Build an AMP if 3rd party libs are needed by the extensions
|
||||||
|
JARs are the default artifact produced in your modules, if you want to build an amp for each module
|
||||||
|
you have to enable this plugin and inspect the src/main/assembly.xml file if you want to customize
|
||||||
|
the layout of your AMP. The end result is that Maven will produce both a JAR file and an AMP with your
|
||||||
|
module.
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
@@ -190,6 +197,7 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
-->
|
||||||
|
|
||||||
<!-- Filter resources in any sub-project with this config -->
|
<!-- Filter resources in any sub-project with this config -->
|
||||||
<plugin>
|
<plugin>
|
||||||
@@ -295,6 +303,7 @@
|
|||||||
(i.e. alfresco.war)
|
(i.e. alfresco.war)
|
||||||
-->
|
-->
|
||||||
<platformModules>
|
<platformModules>
|
||||||
|
<!-- Share Services will be ignored if you are on Platform earlier than 5.1 -->
|
||||||
<moduleDependency>
|
<moduleDependency>
|
||||||
<groupId>${alfresco.groupId}</groupId>
|
<groupId>${alfresco.groupId}</groupId>
|
||||||
<artifactId>alfresco-share-services</artifactId>
|
<artifactId>alfresco-share-services</artifactId>
|
||||||
|
@@ -109,12 +109,14 @@
|
|||||||
-->
|
-->
|
||||||
<platformModules>
|
<platformModules>
|
||||||
<!-- This AMP is needed if we are going to access the platform webapp from a Share webapp -->
|
<!-- This AMP is needed if we are going to access the platform webapp from a Share webapp -->
|
||||||
|
<!-- Share Services will be ignored if you are on Platform earlier than 5.1 -->
|
||||||
<moduleDependency>
|
<moduleDependency>
|
||||||
<groupId>${alfresco.groupId}</groupId>
|
<groupId>${alfresco.groupId}</groupId>
|
||||||
<artifactId>alfresco-share-services</artifactId>
|
<artifactId>alfresco-share-services</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
<type>amp</type>
|
<type>amp</type>
|
||||||
</moduleDependency>
|
</moduleDependency>
|
||||||
|
|
||||||
<!-- Bring in this JAR project, need to be included here, otherwise resources from META-INF
|
<!-- Bring in this JAR project, need to be included here, otherwise resources from META-INF
|
||||||
will not be loaded, such as the test.html page
|
will not be loaded, such as the test.html page
|
||||||
-->
|
-->
|
||||||
@@ -127,7 +129,14 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<!-- Build an AMP if 3rd party libs are needed by the extension -->
|
<!--
|
||||||
|
Build an AMP if 3rd party libs are needed by the extensions
|
||||||
|
JARs are the default artifact produced in your modules, if you want to build an amp for each module
|
||||||
|
you have to enable this plugin and inspect the src/main/assembly.xml file if you want to customize
|
||||||
|
the layout of your AMP. The end result is that Maven will produce both a JAR file and an AMP with your
|
||||||
|
module.
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>2.6</version>
|
<version>2.6</version>
|
||||||
@@ -152,6 +161,7 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
-->
|
||||||
|
|
||||||
<!-- Hot reloading with JRebel -->
|
<!-- Hot reloading with JRebel -->
|
||||||
<plugin>
|
<plugin>
|
||||||
|
Reference in New Issue
Block a user