You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by vi...@apache.org on 2013/06/20 22:34:39 UTC

svn commit: r1495168 - in /oozie/trunk: pom.xml release-log.txt

Author: virag
Date: Thu Jun 20 20:34:39 2013
New Revision: 1495168

URL: http://svn.apache.org/r1495168
Log:
OOZIE-1417 Exlude **/oozie/store/* **/oozie/examples/* from clover reports (dennisyv via virag)

Modified:
    oozie/trunk/pom.xml
    oozie/trunk/release-log.txt

Modified: oozie/trunk/pom.xml
URL: http://svn.apache.org/viewvc/oozie/trunk/pom.xml?rev=1495168&r1=1495167&r2=1495168&view=diff
==============================================================================
--- oozie/trunk/pom.xml (original)
+++ oozie/trunk/pom.xml Thu Jun 20 20:34:39 2013
@@ -810,6 +810,10 @@
                     <licenseLocation>${clover.license}</licenseLocation>
                     <generateXml>true</generateXml>
                     <generateHtml>true</generateHtml>
+                    <excludes>
+                        <exclude>**/oozie/store/*.java</exclude>
+                        <exclude>**/oozie/example/*.java</exclude>
+                    </excludes>
                 </configuration>
             </plugin>
             <plugin>

Modified: oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/oozie/trunk/release-log.txt?rev=1495168&r1=1495167&r2=1495168&view=diff
==============================================================================
--- oozie/trunk/release-log.txt (original)
+++ oozie/trunk/release-log.txt Thu Jun 20 20:34:39 2013
@@ -1,5 +1,6 @@
 -- Oozie 4.1.0 release (trunk - unreleased)
 
+OOZIE-1417 Exlude **/oozie/store/* **/oozie/examples/* from clover reports (dennisyv via virag)
 OOZIE-1426 Fix bugs in SLA UI (rohini)
 OOZIE-1421 UI for SLA (virag, rohini)
 OOZIE-1422 fix bug in SLARegistrationBean and CoordActionsCountForJobIdJPAExecutor (ryota)