Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2007-02-10 00:14:11 +0000
committermtaal2007-02-10 00:14:11 +0000
commit30d909d4c9f39f32e87ccf4900e5d82f9f73c0ee (patch)
treec549f4d736ae8f505898a7836afa73dd909dde99
parent66ed1468eb82dbd98ae510f95e0b78bc2080f4c3 (diff)
downloadorg.eclipse.emf.teneo-30d909d4c9f39f32e87ccf4900e5d82f9f73c0ee.tar.gz
org.eclipse.emf.teneo-30d909d4c9f39f32e87ccf4900e5d82f9f73c0ee.tar.xz
org.eclipse.emf.teneo-30d909d4c9f39f32e87ccf4900e5d82f9f73c0ee.zip
Changed build.properties to 1.5 source level
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/build.properties4
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.DynamicAction/mysql_s_o/hibernate.hbm.xml2
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java12
3 files changed, 11 insertions, 7 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/build.properties b/tests/org.eclipse.emf.teneo.hibernate.test/build.properties
index 1adde8502..7ccc3f63d 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/build.properties
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/build.properties
@@ -1,7 +1,7 @@
# <copyright>
# </copyright>
#
-# $Id: build.properties,v 1.10 2006/11/12 00:07:57 mtaal Exp $
+# $Id: build.properties,v 1.11 2007/02/10 00:14:11 mtaal Exp $
bin.includes = .,\
META-INF/,\
@@ -12,3 +12,5 @@ bin.includes = .,\
jars.compile.order = .
source.. = src/
output.. = bin/
+javacSource=1.5
+javacTarget=1.5
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.DynamicAction/mysql_s_o/hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.DynamicAction/mysql_s_o/hibernate.hbm.xml
index 33d13688d..c6d33cbf2 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.DynamicAction/mysql_s_o/hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.DynamicAction/mysql_s_o/hibernate.hbm.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
-<!-- Generated by Teneo on Thu Feb 08 23:27:59 CET 2007 -->
+<!-- Generated by Teneo on Fri Feb 09 00:30:57 CET 2007 -->
<hibernate-mapping>
<class entity-name="Person" abstract="false" lazy="false" table="`person`">
<meta attribute="eclassName">Person</meta>
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java
index 4c069cf11..67e8a8537 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: AllTests.java,v 1.29 2007/02/08 23:14:30 mtaal Exp $
+ * $Id: AllTests.java,v 1.30 2007/02/10 00:14:11 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.test.emf.sample;
@@ -45,7 +45,7 @@ import org.eclipse.emf.teneo.test.emf.sample.WorkFlowAction;
* All sample tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.29 $
+ * @version $Revision: 1.30 $
*/
public class AllTests {
@@ -54,6 +54,10 @@ public class AllTests {
.getConfigurations());
// suite.addTestSuite(GMFNotationAction.class);
// suite.addTestSuite(LobjAction.class);
+
+ suite.addTestSuite(DynamicAction.class);
+
+/*
suite.addTestSuite(AccountingTest.class);
suite.addTestSuite(LibrarySessionControllerAddContentAction.class);
@@ -81,8 +85,6 @@ public class AllTests {
suite.addTestSuite(LibraryAction.class);
- suite.addTestSuite(DynamicAction.class);
-
// suite.addTestSuite(ExtLibraryAction.class);
suite.addTestSuite(CapaTest.class);
@@ -104,7 +106,7 @@ public class AllTests {
suite.addTestSuite(PrimerPOAction.class);
suite.addTestSuite(WorkFlowAction.class);
suite.addTestSuite(ForumAction.class);
-
+*/
return suite;
}
}

Back to the top