Commit dea15ab9 authored by Brian Long's avatar Brian Long
Browse files

Merge branch 'develop' into stable

parents 155ef084 d13678e9
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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>
+34 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@
			<plugin>
				<groupId>com.inteligr8</groupId>
				<artifactId>regex-maven-plugin</artifactId>
				<version>1.0.1</version>
				<version>1.0.2</version>
				<executions>
					<execution>
						<id>string-2-boolean-1</id>
@@ -112,6 +112,39 @@
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>com.inteligr8</groupId>
				<artifactId>conditional-maven-plugin</artifactId>
				<version>1.0.0</version>
				<executions>
					<execution>
						<id>amp-install-phase</id>
						<phase>initialize</phase>
						<goals>
							<goal>boolean-property</goal>
						</goals>
						<configuration>
							<booleanProperty>beedk.jar.notest.empty</booleanProperty>
							<trueValue>none</trueValue>
							<falseValue>install</falseValue>
							<newProperty>amp.install.phase</newProperty>
						</configuration>
					</execution>
					<execution>
						<id>amp-deploy-phase</id>
						<phase>initialize</phase>
						<goals>
							<goal>boolean-property</goal>
						</goals>
						<configuration>
							<booleanProperty>beedk.jar.notest.empty</booleanProperty>
							<trueValue>none</trueValue>
							<falseValue>deploy</falseValue>
							<newProperty>amp.deploy.phase</newProperty>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>