We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cbd049 commit b14d9f5Copy full SHA for b14d9f5
pom.xml
@@ -208,6 +208,18 @@
208
</build>
209
210
<profiles>
211
+ <profile>
212
+ <!-- This profile prevents local maven builds from failing if uncommitted changes are present -->
213
+ <id>local-dev</id>
214
+ <activation>
215
+ <property>
216
+ <name>!env.CI</name>
217
+ </property>
218
+ </activation>
219
+ <properties>
220
+ <jgit.dirtyWorkingTree>warning</jgit.dirtyWorkingTree>
221
+ </properties>
222
+ </profile>
223
<!-- Automatic profile for Mac-specific settings -->
224
<profile>
225
<id>macos</id>
0 commit comments