Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2008-05-12 10:35:31 +0000
committerEike Stepper2008-05-12 10:35:31 +0000
commit766a7ac52f4a1d088c55f15c2df34507e144f1ae (patch)
tree595943bd7d003e3a59c676e2f23a3ad8ae9c4610
parente870dd140c8c5c4dae7196a8792fc3748fc094ff (diff)
downloadcdo-766a7ac52f4a1d088c55f15c2df34507e144f1ae.tar.gz
cdo-766a7ac52f4a1d088c55f15c2df34507e144f1ae.tar.xz
cdo-766a7ac52f4a1d088c55f15c2df34507e144f1ae.zip
[231516] Turn DB adapters from fragments into plugins
https://bugs.eclipse.org/bugs/show_bug.cgi?id=231516
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/.classpath2
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/.settings/org.eclipse.jdt.core.prefs3
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/META-INF/MANIFEST.MF4
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/build.properties2
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/lib/.cvsignore2
-rw-r--r--plugins/org.eclipse.net4j.db.tests/.classpath3
-rw-r--r--plugins/org.eclipse.net4j.db.tests/META-INF/MANIFEST.MF4
-rw-r--r--plugins/org.eclipse.net4j.db.tests/build.properties2
8 files changed, 7 insertions, 15 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/.classpath b/plugins/org.eclipse.emf.cdo.tests.hibernate/.classpath
index 304e86186a..64c5e31b7a 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/.classpath
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/.classpath
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.emf.cdo.tests.hibernate/.settings/org.eclipse.jdt.core.prefs
index b43dac79fa..4e7a462776 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/.settings/org.eclipse.jdt.core.prefs
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/.settings/org.eclipse.jdt.core.prefs
@@ -1,4 +1,4 @@
-#Tue Mar 04 08:39:56 CET 2008
+#Mon May 12 12:28:38 CEST 2008
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
@@ -58,7 +58,6 @@ org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeUncheckedExceptions=disabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/META-INF/MANIFEST.MF b/plugins/org.eclipse.emf.cdo.tests.hibernate/META-INF/MANIFEST.MF
index 2d7a50b03a..e0cec26498 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/META-INF/MANIFEST.MF
@@ -8,9 +8,9 @@ Bundle-Localization: plugin
Bundle-Activator: org.eclipse.emf.cdo.tests.hibernate.Activator
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Bundle-ClassPath: lib/mysql-connector-java-5.1.5-bin.jar,
- .
+Bundle-ClassPath: .
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.net4j.db.mysql;bundle-version="0.8.0",
org.eclipse.net4j.tcp,
org.eclipse.emf.cdo,
org.eclipse.emf.cdo.server,
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/build.properties b/plugins/org.eclipse.emf.cdo.tests.hibernate/build.properties
index 7b7652f230..10d0d39618 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/build.properties
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/build.properties
@@ -22,6 +22,4 @@ bin.includes = META-INF/,\
about.mappings,\
about.properties,\
modeling32.png,\
- lib/mysql-connector-java-5.1.5-bin.jar,\
src/log4j.properties
-jars.extra.classpath = lib/mysql-connector-java-5.1.5-bin.jar
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/lib/.cvsignore b/plugins/org.eclipse.emf.cdo.tests.hibernate/lib/.cvsignore
deleted file mode 100644
index 25b9ddefb9..0000000000
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/lib/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*.jar
-*.zip
diff --git a/plugins/org.eclipse.net4j.db.tests/.classpath b/plugins/org.eclipse.net4j.db.tests/.classpath
index 208737608b..64c5e31b7a 100644
--- a/plugins/org.eclipse.net4j.db.tests/.classpath
+++ b/plugins/org.eclipse.net4j.db.tests/.classpath
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry combineaccessrules="false" kind="src" path="/org.eclipse.net4j.db.derby"/>
+ <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/plugins/org.eclipse.net4j.db.tests/META-INF/MANIFEST.MF b/plugins/org.eclipse.net4j.db.tests/META-INF/MANIFEST.MF
index 6ee78afa75..40482f3ecb 100644
--- a/plugins/org.eclipse.net4j.db.tests/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.net4j.db.tests/META-INF/MANIFEST.MF
@@ -9,7 +9,7 @@ Bundle-ClassPath: .
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)",
- org.eclipse.net4j.tests,
- org.eclipse.net4j.db
+ org.eclipse.net4j.tests;visibility:=reexport,
+ org.eclipse.net4j.db.derby;visibility:=reexport
Export-Package: org.eclipse.net4j.db.tests
Eclipse-LazyStart: true
diff --git a/plugins/org.eclipse.net4j.db.tests/build.properties b/plugins/org.eclipse.net4j.db.tests/build.properties
index 52d5161e5d..e842be8eed 100644
--- a/plugins/org.eclipse.net4j.db.tests/build.properties
+++ b/plugins/org.eclipse.net4j.db.tests/build.properties
@@ -23,5 +23,3 @@ bin.includes = META-INF/,\
about.mappings,\
about.properties,\
modeling32.png
-jars.extra.classpath = platform:/plugin/org.eclipse.net4j.db.derby/lib/derby.jar,\
- platform:/plugin/org.eclipse.net4j.db.derby/lib/derbyclient.jar

Back to the top