-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move to test containers, some updates of components (#203)
* move to test containers, some updates of components * add authentication * remove redundant code * bump library versions
- Loading branch information
1 parent
e86e3cf
commit 6bf237f
Showing
14 changed files
with
399 additions
and
242 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
addSbtPlugin("com.github.sbt" % "sbt-site" % "1.7.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12") | ||
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11") | ||
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") | ||
addSbtPlugin("com.github.sbt" % "sbt-site" % "1.7.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0") | ||
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11") | ||
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") | ||
|
||
// scala-xml issues | ||
// TODO remove when everything has migrated to scala-xml 2.x | ||
// https://github.com/scala/bug/issues/12632 | ||
ThisBuild / libraryDependencySchemes ++= Seq( | ||
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always | ||
) | ||
) |
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,12 @@ | ||
version: '3.8' | ||
|
||
services: | ||
|
||
kairosdb: | ||
image: brunoballekens/kairosdb-scala-driver-it:1.3.0-1 | ||
volumes: | ||
- ./conf/auth:/opt/kairosdb/conf/auth | ||
expose: | ||
- 8080 | ||
environment: | ||
- JAVA_OPTS=-Djava.security.auth.login.config=/opt/kairosdb/conf/auth/basicAuth.conf -Dkairosdb.jetty.auth_module_name=basicAuth -Dkairosdb.jetty.basic_auth.user=test -Dkairosdb.jetty.basic_auth.password=test |
Oops, something went wrong.