Skip to content

Commit 9591f3f

Browse files
authored
bugfix: fix inner deploy depend (#77)
1 parent 26b7460 commit 9591f3f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,31 @@
267267
</execution>
268268
</executions>
269269
</plugin>
270+
<plugin>
271+
<groupId>org.codehaus.mojo</groupId>
272+
<artifactId>flatten-maven-plugin</artifactId>
273+
<version>${flatten-maven-plugin.version}</version>
274+
<configuration>
275+
<updatePomFile>true</updatePomFile>
276+
<flattenMode>ossrh</flattenMode>
277+
</configuration>
278+
<executions>
279+
<execution>
280+
<id>flatten</id>
281+
<goals>
282+
<goal>flatten</goal>
283+
</goals>
284+
<phase>process-resources</phase>
285+
</execution>
286+
<execution>
287+
<id>flatten.clean</id>
288+
<goals>
289+
<goal>clean</goal>
290+
</goals>
291+
<phase>clean</phase>
292+
</execution>
293+
</executions>
294+
</plugin>
270295
</plugins>
271296
</build>
272297
</profile>

0 commit comments

Comments
 (0)