This is an automated email from the ASF dual-hosted git repository. sebawagner pushed a commit to branch feature/add-more-quick-run-options in repository https://gitbox.apache.org/repos/asf/openmeetings.git
commit 906dab61965d767c5fefa5732cacba8952223828 Author: Sebastian Wagner <[email protected]> AuthorDate: Sun Apr 5 10:02:12 2020 +1200 Add some more quick run options for build time speed up --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index a12fe02..3960a0e 100644 --- a/pom.xml +++ b/pom.xml @@ -735,6 +735,9 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> + <configuration> + <skip>${om.quick.build}</skip> + </configuration> <executions> <execution> <goals> @@ -1035,6 +1038,7 @@ <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> <configuration> + <skip>${om.quick.build}</skip> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> <showAvatarImages>true</showAvatarImages> </configuration> @@ -1073,6 +1077,9 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> + <configuration> + <skip>${om.quick.build}</skip> + </configuration> <reportSets> <reportSet> <reports>
