Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ replay_pid*

# maven build directories
target/*

# Flattened POM files (generated by flatten-maven-plugin)
.flattened-pom.xml
Comment thread
bplessis-swi marked this conversation as resolved.
Outdated
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,33 @@
</execution>
</executions>
</plugin>
<plugin>
Comment thread
bplessis-swi marked this conversation as resolved.
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.7.3</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
Comment thread
bplessis-swi marked this conversation as resolved.
Outdated
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
Comment thread
bplessis-swi marked this conversation as resolved.
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading