aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2018-09-12 17:30:33 -0700
committerJakob Odersky <jakob@odersky.com>2018-10-09 16:19:39 -0700
commiteb6f97b4cac548999cbf192ee83d9ba9a253b7c8 (patch)
tree6d75a23efc841a6f51e780913387000206d1fe94 /build.sbt
parent4d1197099ce4e721c18bf4cacbb2e1980e4210b5 (diff)
downloaddriver-core-eb6f97b4cac548999cbf192ee83d9ba9a253b7c8.tar.gz
driver-core-eb6f97b4cac548999cbf192ee83d9ba9a253b7c8.tar.bz2
driver-core-eb6f97b4cac548999cbf192ee83d9ba9a253b7c8.zip
Move database-related functionality to separate project
This committ includes a breaking change. The database-specific utility "Converters" trait threw an exception "DatabaseException" defined in the rest package, thus breaking the dependency graph. The solution was to move the DatabaseException class from rest to database and not inherit ServiceExceptio any more. Unfortunately, the rest classes also require the database exception in propagating errors so this funtionality has been removed. The rationale is: 1. Database exceptions are rare and result in 500 errors anyway making the status code opaque to what actual error caused it. 2. In core 2.0, an improved tracing framework will make diagnosing and following database errors easier, thereby attenuating the need to forward details on service exceptions in responses.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt9
1 files changed, 7 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 4f32af7..c57a7ca 100644
--- a/build.sbt
+++ b/build.sbt
@@ -72,9 +72,14 @@ lazy val `core-messaging` = project
.dependsOn(`core-reporting`)
.settings(testdeps)
+lazy val `core-database` = project
+ .enablePlugins(LibraryPlugin)
+ .dependsOn(`core-types`)
+ .settings(testdeps)
+
lazy val `core-init` = project
.enablePlugins(LibraryPlugin)
- .dependsOn(`core-reporting`, `core-storage`, `core-messaging`, `core-rest`)
+ .dependsOn(`core-reporting`, `core-storage`, `core-messaging`, `core-rest`, `core-database`)
.settings(testdeps)
lazy val core = project
@@ -91,5 +96,5 @@ lazy val core = project
s"https://github.com/drivergroup/driver-core/blob/master€{FILE_PATH}.scala"
)
)
- .dependsOn(`core-types`, `core-rest`, `core-reporting`, `core-storage`, `core-messaging`, `core-init`)
+ .dependsOn(`core-types`, `core-rest`, `core-reporting`, `core-storage`, `core-messaging`, `core-database`, `core-init`)
.settings(testdeps)