citrusframework / citrus-db

Database driver and server for relational DBMS simulation via JDBC
Apache License 2.0
4 stars 2 forks source link

citrus-db-driver currently without dependencies #10

Closed svettwer closed 6 years ago

svettwer commented 6 years ago

Hi!

While trying to test the citrus-db-driver, one found out, that the dependencies are missing in version 0.1.0.

One should add the dependencies to the artifact for the next release.

Workaround

  1. Checkout the current snapshot version and build it locally (recommended)
  2. Use version 0.1.0 and add the following dependencies by hand
    • httpclient
    • jackson-databind
    • http-core
<dependency>
    <groupId>com.consol.citrus</groupId>
    <artifactId>citrus-db-driver</artifactId>
    <version>0.1.0</version>
</dependency>
svettwer commented 6 years ago

Resolved via ab09d38. Please use the workaround until the next release has been made.