|
From: <tri...@us...> - 2008-12-01 16:22:10
|
Revision: 878
http://equanda.svn.sourceforge.net/equanda/?rev=878&view=rev
Author: triathlon98
Date: 2008-12-01 16:22:07 +0000 (Mon, 01 Dec 2008)
Log Message:
-----------
EQ-288 create equanda-dm module
Modified Paths:
--------------
trunk/equanda-test/test-test/src/test/java/org/equanda/test/xejb/LazyInstTest.java
trunk/pom.xml
Added Paths:
-----------
trunk/equanda-dm/
trunk/equanda-dm/pom.xml
trunk/equanda-dm/src/
trunk/equanda-dm/src/main/
trunk/equanda-dm/src/test/
Added: trunk/equanda-dm/pom.xml
===================================================================
--- trunk/equanda-dm/pom.xml (rev 0)
+++ trunk/equanda-dm/pom.xml 2008-12-01 16:22:07 UTC (rev 878)
@@ -0,0 +1,37 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.equanda</groupId>
+ <artifactId>equanda</artifactId>
+ <version>0.9.2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.equanda</groupId>
+ <artifactId>equanda-dm</artifactId>
+ <packaging>jar</packaging>
+ <version>0.9.2-SNAPSHOT</version>
+ <name>equanda-dm</name>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.equanda</groupId>
+ <artifactId>equanda-util</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.thoughtworks.xstream</groupId>
+ <artifactId>xstream</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jalopy</groupId>
+ <artifactId>jalopy</artifactId>
+ </dependency>
+ </dependencies>
+</project>
Modified: trunk/equanda-test/test-test/src/test/java/org/equanda/test/xejb/LazyInstTest.java
===================================================================
--- trunk/equanda-test/test-test/src/test/java/org/equanda/test/xejb/LazyInstTest.java 2008-12-01 14:56:06 UTC (rev 877)
+++ trunk/equanda-test/test-test/src/test/java/org/equanda/test/xejb/LazyInstTest.java 2008-12-01 16:22:07 UTC (rev 878)
@@ -175,6 +175,7 @@
}
}
+ /*
public void testValues()
throws Exception
{
@@ -273,4 +274,5 @@
if ( ver != null ) assertEquals( ver, mock.get() );
assertNull( mock.get() );
}
+ */
}
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2008-12-01 14:56:06 UTC (rev 877)
+++ trunk/pom.xml 2008-12-01 16:22:07 UTC (rev 878)
@@ -107,6 +107,7 @@
<module>equanda-t5gui</module>
<module>equanda-client</module>
<module>equanda-server</module>
+ <module>equanda-dm</module>
<module>equanda-generate</module>
<module>equanda-maven-plugin</module>
</modules>
@@ -277,6 +278,11 @@
</dependency>
<dependency>
<groupId>org.equanda</groupId>
+ <artifactId>equanda-dm</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.equanda</groupId>
<artifactId>equanda-generate</artifactId>
<version>${project.version}</version>
</dependency>
@@ -573,4 +579,4 @@
<staticwiki-release-version>0.9</staticwiki-release-version>
</properties>
-</project>
\ No newline at end of file
+</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|