fixed install/deploy enable/disable for AMPs

This commit is contained in:
2021-05-18 12:37:50 -04:00
parent ac67f46408
commit d13678e9e0
2 changed files with 36 additions and 5 deletions
+2 -4
View File
@@ -225,7 +225,7 @@
<!-- install the AMP -->
<execution>
<id>install-amp</id>
<phase>install</phase>
<phase>${amp.install.phase}</phase>
<goals><goal>install-file</goal></goals>
<configuration>
<groupId>${project.groupId}</groupId>
@@ -233,7 +233,6 @@
<version>${project.version}</version>
<packaging>amp</packaging>
<file>${project.build.directory}/${project.artifactId}-${project.version}.amp</file>
<skip>${beedk.jar.notest.empty}</skip>
</configuration>
</execution>
</executions>
@@ -246,7 +245,7 @@
<!-- deploy the AMP -->
<execution>
<id>deploy-amp</id>
<phase>deploy</phase>
<phase>${amp.deploy.phase}</phase>
<goals><goal>deploy-file</goal></goals>
<configuration>
<groupId>${project.groupId}</groupId>
@@ -254,7 +253,6 @@
<version>${project.version}</version>
<packaging>amp</packaging>
<file>${project.build.directory}/${project.artifactId}-${project.version}.amp</file>
<skip>${beedk.jar.notest.empty}</skip>
</configuration>
</execution>
</executions>