Add -DdeployTestsuite profile to testsuite

Closes #22258
This commit is contained in:
Alex Szczuczko 2023-08-04 09:20:50 -06:00 committed by Alexander Schwartz
parent 5e21ff56ed
commit 92bec0214f

View file

@ -62,4 +62,26 @@
<module>utils</module> <module>utils</module>
</modules> </modules>
<profiles>
<profile>
<id>deploy-testsuite</id>
<activation>
<property>
<name>deployTestsuite</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project> </project>