Skip to content

Commit

Permalink
chore(maven): add incremental module builder maven extension
Browse files Browse the repository at this point in the history
- allows to only build modules which where changed in git and their dependents
  with `mvn -b incremental install`
  • Loading branch information
menski committed Jun 20, 2018
1 parent b1c6bb2 commit 1bfeb6c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
<!--
Maven Incremental Module Builder https://github.com/khmarbaise/incremental-module-builder
Usage: mvn -b incremental install
-->
<extension>
<groupId>com.soebes.maven.extensions</groupId>
<artifactId>incremental-module-builder</artifactId>
<version>0.2.0</version>
</extension>
</extensions>

0 comments on commit 1bfeb6c

Please sign in to comment.