You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by er...@apache.org on 2012/04/10 21:29:43 UTC

svn commit: r1311947 - /ofbiz/trunk/build.xml

Author: erwan
Date: Tue Apr 10 19:29:43 2012
New Revision: 1311947

URL: http://svn.apache.org/viewvc?rev=1311947&view=rev
Log:
Using a parameter for property sonar.jdbc.url

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1311947&r1=1311946&r2=1311947&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Tue Apr 10 19:29:43 2012
@@ -1058,8 +1058,8 @@ under the License.
         <property name="sonar.cobertura.reportPath" value="runtime/logs/cobertura-report/coverage.xml"/>
         <property name="sonar.java.source" value="1.6" />
         <property name="sonar.java.target" value="1.6" />
-        <property name="sonar.jdbc.url"
-           value="jdbc:mysql://localhost:3306/sonar?useUnicode=true&amp;characterEncoding=utf8" />
+        <!-- default for jdbc url: jdbc:mysql://localhost:3306/sonar?useUnicode=true&amp;characterEncoding=utf8-->
+        <property name="sonar.jdbc.url" value="${sonar.jdbc.url}"/>
         <property name="sonar.jdbc.driverClassName" value="com.mysql.jdbc.Driver" />
         <property name="sonar.jdbc.username" value="${sonar.jdbc.username}" />
         <property name="sonar.jdbc.password" value="${sonar.jdbc.password}" />