Skip to content

Commit 7a0e93e

Browse files
committed
config: add new maven profile no-validations
1 parent 6efc3e1 commit 7a0e93e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,22 @@
114114
</plugins>
115115
</build>
116116

117+
<profiles>
118+
<profile>
119+
<!-- To be used during development. Run the command-->
120+
<!-- mvn -Pno-validations install -->
121+
<id>no-validations</id>
122+
<properties>
123+
<skipTests>true</skipTests>
124+
<checkstyle.skip>true</checkstyle.skip>
125+
<pmd.skip>true</pmd.skip>
126+
<findbugs.skip>true</findbugs.skip>
127+
<xml.skip>true</xml.skip>
128+
<forbiddenapis.skip>true</forbiddenapis.skip>
129+
<cobertura.skip>true</cobertura.skip>
130+
<maven.javadoc.skip>true</maven.javadoc.skip>
131+
</properties>
132+
</profile>
133+
</profiles>
134+
117135
</project>

0 commit comments

Comments
 (0)