From 400d37a1d6384cb0e3cc2722da1461315f7ced88 Mon Sep 17 00:00:00 2001 From: Ben Hale Date: Fri, 11 May 2012 15:57:36 +0100 Subject: [PATCH] DATAJPA-210 - System property control of Bundlor configuration Added the ability to control whether Bundlor will fail on warnings or whether it is enabled at all, using Java system properties. By default, Bundlor will be enabled and will fail on warnings. Specifying `-DfailOnWarnings=true/false` and `-Dbundlor.enabled=true/false` as part of the Maven command will now control Bundlor's operation. --- pom.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 809f24b00..7ed69e9e4 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,10 @@ 1.6.1 1.0 1.1.3 - + + true + true + UTF-8 spring-data-jpa Spring Data JPA @@ -570,7 +573,8 @@ com.springsource.bundlor.maven 1.0.0.RELEASE - true + ${bundlor.failOnWarnings} + ${bundlor.enabled}