You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dk...@apache.org on 2011/09/20 02:31:02 UTC

svn commit: r1172919 - in /camel/branches/camel-2.8.x: ./ components/camel-restlet/pom.xml

Author: dkulp
Date: Tue Sep 20 00:31:02 2011
New Revision: 1172919

URL: http://svn.apache.org/viewvc?rev=1172919&view=rev
Log:
Merged revisions 1164344 via svnmerge from 
https://svn.apache.org/repos/asf/camel/trunk

........
  r1164344 | ningjiang | 2011-09-01 23:47:33 -0400 (Thu, 01 Sep 2011) | 1 line
  
  Configure the jul logs into file
........

Modified:
    camel/branches/camel-2.8.x/   (props changed)
    camel/branches/camel-2.8.x/components/camel-restlet/pom.xml

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.8.x/components/camel-restlet/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-restlet/pom.xml?rev=1172919&r1=1172918&r2=1172919&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-restlet/pom.xml (original)
+++ camel/branches/camel-2.8.x/components/camel-restlet/pom.xml Tue Sep 20 00:31:02 2011
@@ -103,5 +103,22 @@
     </dependency>
 
   </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <childDelegation>false</childDelegation>
+          <forkMode>once</forkMode>
+          <reportFormat>brief</reportFormat>
+          <useFile>false</useFile>
+          <runOrder>alphabetical</runOrder>
+          <systemPropertyVariables>
+            <java.util.logging.config.file>${basedir}/target/test-classes/logging.properties</java.util.logging.config.file>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>