Update flatten to work with full release

This commit is contained in:
Chris H
2025-06-04 21:33:21 -04:00
parent 3ec480afa4
commit 51929434be
3 changed files with 28 additions and 2 deletions

View File

@@ -297,5 +297,31 @@
</plugins>
</build>
</profile>
<profile>
<id>no-flatten</id>
<activation>
<property>
<name>skip.flatten</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<executions>
<execution>
<id>flatten</id>
<phase>none</phase>
</execution>
<execution>
<id>flatten.clean</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>