Skip to content

Commit

Permalink
Merge pull request #12570 from aloubyansky/more-quickly
Browse files Browse the repository at this point in the history
add missing 'quickly' build profile to the independent projects
  • Loading branch information
aloubyansky authored Oct 7, 2020
2 parents 05336ca + ae76e30 commit 8dba141
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
17 changes: 17 additions & 0 deletions independent-projects/ide-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,23 @@
</build>

<profiles>
<profile>
<id>quick-build</id>
<activation>
<property>
<name>quickly</name>
</property>
</activation>
<properties>
<skipTests>true</skipTests>
<skipITs>true</skipITs>
<enforcer.skip>true</enforcer.skip>
<format.skip>true</format.skip>
</properties>
<build>
<defaultGoal>clean install</defaultGoal>
</build>
</profile>
<profile>
<id>release</id>
<build>
Expand Down
20 changes: 20 additions & 0 deletions independent-projects/revapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,24 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>quick-build</id>
<activation>
<property>
<name>quickly</name>
</property>
</activation>
<properties>
<skipTests>true</skipTests>
<skipITs>true</skipITs>
<enforcer.skip>true</enforcer.skip>
<format.skip>true</format.skip>
</properties>
<build>
<defaultGoal>clean install</defaultGoal>
</build>
</profile>
</profiles>
</project>

0 comments on commit 8dba141

Please sign in to comment.