GH-2214 - Re-enable documentation deployment.

The upgrade to Artifactory Maven Plugin 3.6 has caused our documentation deployments being broken as the new version now considers the maven.deploy.skip property and thus builds the documentation artifacts but doesn't deploy them.
This commit is contained in:
Oliver Drotbohm
2024-09-12 09:15:20 +02:00
parent 9f7a6fd53e
commit adfdb02043

11
pom.xml
View File

@@ -233,7 +233,6 @@
<maven.main.skip>true</maven.main.skip>
<maven.test.skip>true</maven.test.skip>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<build>
@@ -353,6 +352,16 @@
</executions>
</plugin>
<!-- Skip default deployment -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- Deploy to Artifactory -->
<plugin>