Skip to content

Commit d3cd212

Browse files
committed
fixed flatten plugin order
1 parent 729d880 commit d3cd212

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

driver/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,10 @@
227227
</execution>
228228
</executions>
229229
</plugin>
230+
<plugin>
231+
<groupId>org.codehaus.mojo</groupId>
232+
<artifactId>flatten-maven-plugin</artifactId>
233+
</plugin>
230234
</plugins>
231235
</build>
232236

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@
248248
<!-- enable flattening -->
249249
<execution>
250250
<id>flatten</id>
251-
<phase>process-resources</phase>
251+
<phase>package</phase>
252252
<goals>
253253
<goal>flatten</goal>
254254
</goals>

shaded/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@
125125
</execution>
126126
</executions>
127127
</plugin>
128+
<plugin>
129+
<groupId>org.codehaus.mojo</groupId>
130+
<artifactId>flatten-maven-plugin</artifactId>
131+
</plugin>
128132
</plugins>
129133
</build>
130134

0 commit comments

Comments
 (0)