Commit in java/trunk/record-util on MAIN
pom.xml+13899 -> 900
src/test/java/org/hps/record/EventProcessingChainTest.java+2-3899 -> 900
                            /EventProcessingErrorTest.java+2-3899 -> 900
                            /EvioEventProcessingTest.java+2-3899 -> 900
src/test/java/org/hps/record/etevent/EtEventLoopTest.java+1-3899 -> 900
                                    /MultiThreadedEtEventLoopTest.java+1-1899 -> 900
src/test/java/org/hps/record/evio/EvioEventLoopTest.java+1-1899 -> 900
+22-14
7 modified files
Fix up test imports.  Exclude all tests from build.

java/trunk/record-util
pom.xml 899 -> 900
--- java/trunk/record-util/pom.xml	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/pom.xml	2014-08-19 22:00:09 UTC (rev 900)
@@ -14,6 +14,19 @@
         <connection>scm:svn:svn://svn.freehep.org/hps/java/trunk/record-util/</connection>
         <developerConnection>scm:svn:svn://svn.freehep.org/hps/java/trunk/record-util/</developerConnection>
     </scm>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <excludes> 
+                        <exclude>org/hps/record/**</exclude>
+                    </excludes> 
+                </configuration> 
+            </plugin> 
+        </plugins> 
+    </build>
     <dependencies>
         <dependency>
             <groupId>org.hps</groupId>

java/trunk/record-util/src/test/java/org/hps/record
EventProcessingChainTest.java 899 -> 900
--- java/trunk/record-util/src/test/java/org/hps/record/EventProcessingChainTest.java	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/src/test/java/org/hps/record/EventProcessingChainTest.java	2014-08-19 22:00:09 UTC (rev 900)
@@ -1,8 +1,7 @@
-package org.hps.monitoring.record;
+package org.hps.record;
 
 import org.hps.evio.LCSimTestRunEventBuilder;
-import org.hps.monitoring.enums.DataSourceType;
-import org.hps.monitoring.record.evio.EvioEventProcessor;
+import org.hps.record.evio.EvioEventProcessor;
 import org.jlab.coda.jevio.EvioEvent;
 import org.lcsim.event.EventHeader;
 import org.lcsim.event.EventHeader.LCMetaData;

java/trunk/record-util/src/test/java/org/hps/record
EventProcessingErrorTest.java 899 -> 900
--- java/trunk/record-util/src/test/java/org/hps/record/EventProcessingErrorTest.java	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/src/test/java/org/hps/record/EventProcessingErrorTest.java	2014-08-19 22:00:09 UTC (rev 900)
@@ -1,11 +1,10 @@
-package org.hps.monitoring.record;
+package org.hps.record;
 
 import junit.framework.TestCase;
 
 import org.freehep.record.loop.RecordLoop.Command;
 import org.hps.evio.LCSimTestRunEventBuilder;
-import org.hps.monitoring.enums.DataSourceType;
-import org.hps.monitoring.record.evio.EvioEventProcessor;
+import org.hps.record.evio.EvioEventProcessor;
 import org.lcsim.event.EventHeader;
 import org.lcsim.util.Driver;
 

java/trunk/record-util/src/test/java/org/hps/record
EvioEventProcessingTest.java 899 -> 900
--- java/trunk/record-util/src/test/java/org/hps/record/EvioEventProcessingTest.java	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/src/test/java/org/hps/record/EvioEventProcessingTest.java	2014-08-19 22:00:09 UTC (rev 900)
@@ -1,8 +1,7 @@
-package org.hps.monitoring.record;
+package org.hps.record;
 
 import org.hps.evio.LCSimTestRunEventBuilder;
-import org.hps.monitoring.enums.DataSourceType;
-import org.hps.monitoring.record.evio.EvioEventProcessor;
+import org.hps.record.evio.EvioEventProcessor;
 import org.jlab.coda.jevio.EvioEvent;
 import org.lcsim.event.EventHeader;
 import org.lcsim.event.EventHeader.LCMetaData;

java/trunk/record-util/src/test/java/org/hps/record/etevent
EtEventLoopTest.java 899 -> 900
--- java/trunk/record-util/src/test/java/org/hps/record/etevent/EtEventLoopTest.java	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/src/test/java/org/hps/record/etevent/EtEventLoopTest.java	2014-08-19 22:00:09 UTC (rev 900)
@@ -1,7 +1,5 @@
-package org.hps.monitoring.record.etevent;
+package org.hps.record.etevent;
 
-import java.io.IOException;
-
 import org.freehep.record.loop.RecordLoop.Command;
 import org.jlab.coda.et.EtEvent;
 import org.jlab.coda.et.EtEventImpl;

java/trunk/record-util/src/test/java/org/hps/record/etevent
MultiThreadedEtEventLoopTest.java 899 -> 900
--- java/trunk/record-util/src/test/java/org/hps/record/etevent/MultiThreadedEtEventLoopTest.java	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/src/test/java/org/hps/record/etevent/MultiThreadedEtEventLoopTest.java	2014-08-19 22:00:09 UTC (rev 900)
@@ -1,4 +1,4 @@
-package org.hps.monitoring.record.etevent;
+package org.hps.record.etevent;
 
 import org.freehep.record.loop.RecordLoop.Command;
 import org.jlab.coda.et.EtEvent;

java/trunk/record-util/src/test/java/org/hps/record/evio
EvioEventLoopTest.java 899 -> 900
--- java/trunk/record-util/src/test/java/org/hps/record/evio/EvioEventLoopTest.java	2014-08-19 21:54:39 UTC (rev 899)
+++ java/trunk/record-util/src/test/java/org/hps/record/evio/EvioEventLoopTest.java	2014-08-19 22:00:09 UTC (rev 900)
@@ -1,4 +1,4 @@
-package org.hps.monitoring.record.evio;
+package org.hps.record.evio;
 
 import java.io.File;
 import java.io.IOException;
SVNspam 0.1