Commit 0b2cbcf0 authored by Brian Long's avatar Brian Long
Browse files

plugin version upgrades and parameterization

parent 6fc66409
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>3.2.0</version>
				<version>${build-helper.version}</version>
				<executions>
					<execution>
						<id>module-snapshot-timestamp</id>
@@ -78,7 +78,7 @@
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>3.2.0</version>
				<version>${build-helper.version}</version>
				<executions>
					<execution>
						<id>add-acs-module-resources</id>
@@ -138,7 +138,6 @@
			<!-- This plugin prevents binary file formats from being corrupted due to filtering -->
			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
				<version>3.2.0</version>
				<configuration>
					<encoding>UTF-8</encoding>
					<nonFilteredFileExtensions>
@@ -254,7 +253,7 @@
			<!-- This plugin changes the packaging directory to the consolidated directory -->
			<plugin>
				<artifactId>maven-jar-plugin</artifactId>
				<version>3.2.0</version>
				<version>${maven-jar.version}</version>
				<configuration>
					<classesDirectory>${project.build.packageDirectory}</classesDirectory>
				</configuration>
@@ -316,7 +315,7 @@
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>3.2.0</version>
				<version>${build-helper.version}</version>
				<executions>
					<execution>
						<id>attach-amp</id>
@@ -404,6 +403,10 @@

				<!-- output -->
				<alfresco.module.path>alfresco/module/${alfresco.module.pathname}</alfresco.module.path>
				
				<!-- versions -->
				<build-helper.version>3.6.1</build-helper.version>
				<maven-jar.version>3.4.2</maven-jar.version>
			</properties>
		</profile>
	</profiles>
+2 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
			<!-- This plugin downloads the Platform WAR and JDBC JAR dependency -->
			<plugin>
				<artifactId>maven-dependency-plugin</artifactId>
				<version>3.6.1</version>
				<version>${maven-dependency.version}</version>
				<executions>
					<!-- This execution downloads the Platform WAR -->
					<execution>
@@ -110,6 +110,7 @@

				<!-- versions -->
				<postgres.jdbc.version>42.2.18</postgres.jdbc.version>
				<maven-dependency.version>3.8.1</maven-dependency.version>

				<!-- configuring beedk-acs-platform-it-tile -->
				<beedk.deploy.platform.warFile>${project.build.warDirectory}/${alfresco.platform.war.artifactId}-${alfresco.platform.war.version}.war</beedk.deploy.platform.warFile>
+2 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
					<!-- This plugin downloads the Platform WAR and JDBC JAR dependency -->
					<plugin>
						<artifactId>maven-dependency-plugin</artifactId>
						<version>3.6.1</version>
						<version>${maven-dependency.version}</version>
						<executions>
							<!-- This execution downloads the Platform WAR -->
							<execution>
@@ -115,6 +115,7 @@

				<!-- versions -->
				<postgres.jdbc.version>42.2.18</postgres.jdbc.version>
				<maven-dependency.version>3.8.1</maven-dependency.version>

				<!-- configuring beedk-acs-platform-rad-tile -->
				<beedk.deploy.platform.warFile>${project.build.warDirectory}/${alfresco.platform.war.artifactId}-${alfresco.platform.war.version}.war</beedk.deploy.platform.warFile>
+4 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>3.2.0</version>
				<version>${build-helper.version}</version>
				<executions>
					<execution>
						<id>add-acs-platform-module-resources</id>
@@ -46,7 +46,6 @@
			</plugin>
			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
				<version>3.2.0</version>
				<executions>
					<!-- This plugin execution consolidates the compiled/generated/filtered resources into one directory for packaging -->
					<execution>
@@ -80,6 +79,9 @@
				<!-- output -->
				<alfresco.ext.path>alfresco/extension</alfresco.ext.path>
				<alfresco.ext.package>alfresco.extension</alfresco.ext.package>
				
				<!-- versions -->
				<build-helper.version>3.6.1</build-helper.version>
			</properties>
		</profile>
	</profiles>
+2 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
					<!-- This plugin downloads ancillary WARs -->
					<plugin>
						<artifactId>maven-dependency-plugin</artifactId>
						<version>3.6.1</version>
						<version>${maven-dependency.version}</version>
						<executions>
							<!-- This execution downloads the API Explorer WAR -->
							<execution>
@@ -307,6 +307,7 @@
				<acs-postgres.version>12</acs-postgres.version>
				<acs-activemq.version>5.18.4</acs-activemq.version>
				<tomcat-rad.version>9-2.1</tomcat-rad.version>
				<maven-dependency.version>3.8.1</maven-dependency.version>
			</properties>
		</profile>
	</profiles>
Loading