-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core)!: Added H2Db provider bundle (#5343)
* Added db.h2db.provider bundle Signed-off-by: pierantoniomerlino <[email protected]> * Removed H2Db code from core bundle Signed-off-by: pierantoniomerlino <[email protected]> * Added new bundle in distrib Signed-off-by: pierantoniomerlino <[email protected]> * Updated names in component definitions Signed-off-by: pierantoniomerlino <[email protected]> * Fixed tests Signed-off-by: pierantoniomerlino <[email protected]> * Removed core.db test Signed-off-by: pierantoniomerlino <[email protected]> * Fixed some sonar issues Signed-off-by: pierantoniomerlino <[email protected]> * Tried to fix sonar complain Signed-off-by: pierantoniomerlino <[email protected]> * Fixed copyright; fixed import order Signed-off-by: pierantoniomerlino <[email protected]> * Fixed copyright Signed-off-by: pierantoniomerlino <[email protected]> --------- Signed-off-by: pierantoniomerlino <[email protected]>
- Loading branch information
1 parent
e7727f8
commit b231173
Showing
36 changed files
with
569 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lib/ |
33 changes: 33 additions & 0 deletions
33
kura/org.eclipse.kura.db.h2db.provider/META-INF/MANIFEST.MF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: org.eclipse.kura.db.h2db.provider | ||
Bundle-SymbolicName: org.eclipse.kura.db.h2db.provider;singleton:=true | ||
Bundle-Version: 1.0.0.qualifier | ||
Bundle-Vendor: Eclipse Kura | ||
Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" | ||
Service-Component: OSGI-INF/*.xml | ||
Bundle-ClassPath: . | ||
Bundle-ActivationPolicy: lazy | ||
Import-Package: org.eclipse.kura;version="[1.7,2.0)", | ||
org.eclipse.kura.configuration;version="[1.2,2.0)", | ||
org.eclipse.kura.connection.listener;version="1.0.0", | ||
org.eclipse.kura.crypto;version="1.3.0", | ||
org.eclipse.kura.data;version="[1.1,2.0)", | ||
org.eclipse.kura.db;version="[2.0,2.1)", | ||
org.eclipse.kura.message.store;version="[1.0,2.0)", | ||
org.eclipse.kura.message.store.provider;version="[1.0,1.1)", | ||
org.eclipse.kura.type;version="[1.1,2.0)", | ||
org.eclipse.kura.util.configuration;version="[1.0,1.1)", | ||
org.eclipse.kura.util.jdbc;version="[1.0,2.0)", | ||
org.eclipse.kura.util.message.store;version="[1.0,2.0)", | ||
org.eclipse.kura.util.store.listener;version="[1.0,2.0)", | ||
org.eclipse.kura.util.wire.store;version="[1.0,1.1)", | ||
org.eclipse.kura.wire;version="[2.0,3.0)", | ||
org.eclipse.kura.wire.store.provider;version="[1.0,1.1)", | ||
org.h2;version="2.1.214", | ||
org.h2.api;version="2.1.214", | ||
org.h2.jdbcx;version="2.1.214", | ||
org.h2.tools;version="2.1.214", | ||
org.osgi.framework;version="1.10.0", | ||
org.osgi.service.component;version="1.4.0", | ||
org.slf4j;version="1.7.32" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/org.eclipse.kura.core.db.H2DbServer.xml → ...e/org.eclipse.kura.core.db.H2DbServer.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../org.eclipse.kura.core.db.H2DbService.xml → .../org.eclipse.kura.core.db.H2DbService.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.