Trying to build at svn revision 3719
There are a couple of issues:
pom.xml is missing the JUnit dependency. By modifying as follows, I can build the module, but 3 tests are failing with errors (see attachment)
Index: unbbayes.gui.mebn.ontology.protege/pom.xml
===================================================================
--- unbbayes.gui.mebn.ontology.protege/pom.xml (revision 3719)
+++ unbbayes.gui.mebn.ontology.protege/pom.xml (working copy)
@@ -369,6 +369,12 @@
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<reporting>
<plugins>