This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch MSITE-960 in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git
commit 9d767c76bfa105d87f36fc6f4d3d185d0e0d253a Author: Michael Osipov <[email protected]> AuthorDate: Tue Apr 25 17:33:32 2023 +0200 [MSITE-960] CI is broken We need to separate the Fluido Skin version used for the ITs and dev profile from the site generation which depends on the parent POM config. Both can be incompatible. This closes #148 --- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1d279527..98f3bfda 100644 --- a/pom.xml +++ b/pom.xml @@ -210,7 +210,7 @@ under the License. <surefirePluginVersion>3.0.0</surefirePluginVersion> <mavenPluginPluginVersion>3.8.1</mavenPluginPluginVersion> <mavenReportingImplVersion>4.0.0-M7</mavenReportingImplVersion> - <fluidoSkinVersion>2.0.0-M3</fluidoSkinVersion> + <testingFluidoSkinVersion>2.0.0-M3</testingFluidoSkinVersion> <surefire.version>3.0.0</surefire.version> <project.build.outputTimestamp>2023-04-08T16:17:12Z</project.build.outputTimestamp> @@ -520,6 +520,7 @@ under the License. <settingsFile>src/it/mrm/settings.xml</settingsFile> <filterProperties> <mrm.repository.url>${mrm.repository.url}</mrm.repository.url> + <fluidoSkinVersion>${testingFluidoSkinVersion}</fluidoSkinVersion> </filterProperties> <goals> <goal>clean</goal> @@ -599,6 +600,9 @@ under the License. <profile> <id>dev</id> + <properties> + <fluidoSkinVersion>${testingFluidoSkinVersion}</fluidoSkinVersion> + </properties> <build> <pluginManagement> <plugins>
