Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Activated documentation, Code-Quality and Release plugins by default.… #24

Merged
merged 1 commit into from
Dec 10, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 12 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,10 @@

<profile>
<id>documentation</id>
<activation>
<!-- Documentation is generated by default. Can be deactivated by your IDE or on the CL. -->
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
Expand All @@ -645,7 +649,11 @@
</profile>

<profile>
<!-- Code quality checks are executed by default. Can be deactivated by your IDE or on the CL. -->
<id>code-quality</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
Expand All @@ -665,7 +673,11 @@
</profile>

<profile>
<!-- Release artifacts are generated by default. Can be deactivated by your IDE or on the CL. -->
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -695,14 +707,6 @@
</plugins>
</build>
</profile>


<profile>
<id>skip-tests</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>

</profiles>

Expand Down