MS SQL Server support in hawkBit runtime (#684)

* Official MS SQL Server support.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Fix typo.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>
This commit is contained in:
Kai Zimmermann
2018-05-18 14:33:37 +02:00
committed by GitHub
parent 29db5dec15
commit db7bd49897
5 changed files with 8 additions and 3 deletions

View File

@@ -4,6 +4,7 @@
| Group ID | Artifact ID | Version | CQ |
|---|---|---|---|
|com.microsoft.sqlserver|mssql-jdbc|6.4.0| [CQ15896](https://dev.eclipse.org/ipzilla/show_bug.cgi?id=15896) |
|com.cronutils|cron-utils|5.0.5| [CQ15762](https://dev.eclipse.org/ipzilla/show_bug.cgi?id=15762) |
|com.github.ben-manes.caffeine|caffeine|2.3.5| [CQ13563](https://dev.eclipse.org/ipzilla/show_bug.cgi?id=13563) |
|aopalliance|aopalliance|1.0| [CQ10346](https://dev.eclipse.org/ipzilla/show_bug.cgi?id=10346) |

View File

@@ -12,6 +12,7 @@
com.github.gwtd3:gwt-d3-js:jar:sources:3.5.11:compile
com.google.guava:guava:jar:25.0-jre:compile
com.h2database:h2:jar:1.4.195:compile
com.microsoft.sqlserver:mssql-jdbc:jar:6.4.0.jre8:compile
com.rabbitmq:amqp-client:jar:4.0.3:compile
com.rabbitmq:http-client:jar:1.3.1.RELEASE:compile
com.vaadin.external.atmosphere:atmosphere-runtime:jar:2.2.9.vaadin2:compile

View File

@@ -13,7 +13,6 @@
com.ibm.icu:icu4j:jar:50.1.1:test
com.jayway.awaitility:awaitility:jar:1.7.0:test
com.jayway.jsonpath:json-path:jar:2.0.0:test
com.microsoft.sqlserver:mssql-jdbc:jar:6.4.0.jre8:test
commons-collections:commons-collections:jar:3.2.2:test
javax.el:javax.el-api:jar:2.2.4:test
junit:junit:jar:4.12:test

View File

@@ -53,9 +53,9 @@ There are clients outside of the Eclipse IoT eco system as well, e.g.:
| DDLs maintained by project | X | X | X | X |
| Test dependencies defined | X | X | X | - |
| Versions tested | 1.4 | MySQL 5.6/5.7, AWS Aurora | MS SQL Server 2017 | DB2 Server v11.1 |
| Docker image with driver provided | X | X | - | - |
| Docker image with driver provided | X | X (Tag: "-mysql") | X | - |
| JDBC driver | [H2 1.4](https://github.com/h2database/h2database) | [MariaDB Connector/J 2.0](https://github.com/MariaDB/mariadb-connector-j) | [MSSQL-JDBC 6.4](https://github.com/Microsoft/mssql-jdbc) | - |
| Status | Test, Dev, Trial | Production grade | Experimental | Test, Dev |
| Status | Test, Dev, Trial | Production grade | Production grade | Test, Dev |
## (Optional) RabbitMQ: 3.6,3.7

View File

@@ -69,6 +69,10 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>
</dependencies>