Skip to content

Commit

Permalink
Merge pull request zio#702 from jczuchnowski/infrastructure-helper-cl…
Browse files Browse the repository at this point in the history
…eanup

Remove old infrastructure related sbt functions
  • Loading branch information
sviezypan authored May 31, 2022
2 parents b2dc5dd + f618284 commit b3b5388
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 117 deletions.
25 changes: 0 additions & 25 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import BuildHelper._
import InfrastructureHelper._
import explicitdeps.ExplicitDepsPlugin.autoImport.moduleFilterRemoveValue
import sbtcrossproject.CrossPlugin.autoImport.crossProject

Expand Down Expand Up @@ -29,30 +28,6 @@ val zioSchemaVersion = "0.1.9"
val testcontainersVersion = "1.17.2"
val testcontainersScalaVersion = "0.40.7"

lazy val startPostgres = taskKey[Unit]("Start up Postgres")
startPostgres := startService(Database.Postgres, streams.value)

lazy val stopPostgres = taskKey[Unit]("Shut down Postgres")
stopPostgres := stopService(Database.Postgres, streams.value)

lazy val startMySQL = taskKey[Unit]("Start up MySQL")
startMySQL := startService(Database.MySQL, streams.value)

lazy val stopMySQL = taskKey[Unit]("Shut down MySQL")
stopMySQL := stopService(Database.MySQL, streams.value)

lazy val startMsSQL = taskKey[Unit]("Start up Microsoft SQL Server")
startMsSQL := startService(Database.MSSQL, streams.value)

lazy val stopMsSQL = taskKey[Unit]("Shut down Microsoft SQL Server")
stopMsSQL := stopService(Database.MSSQL, streams.value)

lazy val startOracle = taskKey[Unit]("Start up Oracle")
startOracle := startService(Database.Oracle, streams.value)

lazy val stopOracle = taskKey[Unit]("Shut down Oracle")
stopOracle := stopService(Database.Oracle, streams.value)

lazy val root = project
.in(file("."))
.settings(
Expand Down
45 changes: 0 additions & 45 deletions docker-compose.yml

This file was deleted.

47 changes: 0 additions & 47 deletions project/InfrastructureHelper.scala

This file was deleted.

0 comments on commit b3b5388

Please sign in to comment.