Added 'quickbuild' profile for fast builds without tests
Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/332ce22f Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/332ce22f Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/332ce22f Branch: refs/heads/master Commit: 332ce22fd9821f680e45719ff3b5de648f7fa222 Parents: a8baf02 Author: Jakob Frank <[email protected]> Authored: Fri Dec 5 09:19:42 2014 +0100 Committer: Jakob Frank <[email protected]> Committed: Fri Dec 5 09:19:42 2014 +0100 ---------------------------------------------------------------------- parent/pom.xml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/332ce22f/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 27820a4..e65597b 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -1821,13 +1821,23 @@ <url>file://${java.io.tmpdir}${file.separator}repo</url> </snapshotRepository> </distributionManagement> + </profile> + + <profile> + <!-- Quickbuild without tests --> + <id>quickbuild</id> + <activation> + <property> + <name>quick</name> + <value>true</value> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + <skipITs>true</skipITs> + </properties> </profile> </profiles> -<!-- - <scm> - <tag>3.1.0</tag> - </scm> ---> </project>
