bugfix: fix inner deploy depend (#77)

This commit is contained in:
Tomsun28 2026-01-07 17:35:26 +08:00 committed by GitHub
parent 26b7460dc4
commit 9591f3f85c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
pom.xml
View file

@ -267,6 +267,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-maven-plugin.version}</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<goals>
<goal>flatten</goal>
</goals>
<phase>process-resources</phase>
</execution>
<execution>
<id>flatten.clean</id>
<goals>
<goal>clean</goal>
</goals>
<phase>clean</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>