Disable building docs (incl javadocs) by default

This commit is contained in:
Eric Bottard
2017-09-08 17:41:32 +02:00
parent 32c18bec75
commit a6f3e28f8f

13
pom.xml
View File

@@ -30,7 +30,6 @@
<module>spring-shell-jcommander-adapter</module>
<module>spring-shell-shell1-adapter</module>
<module>spring-shell-starter</module>
<module>spring-shell-docs</module>
<module>spring-shell-table</module>
</modules>
@@ -252,5 +251,17 @@
<module>spring-shell-samples</module>
</modules>
</profile>
<profile>
<!-- Skip docs by default -->
<id>full</id>
<activation>
<property>
<name>env.BUILD_DOCS</name>
</property>
</activation>
<modules>
<module>spring-shell-docs</module>
</modules>
</profile>
</profiles>
</project>