|
1 |
| -// https://github.com/tpolecat/doobie.git#series/0.6.x |
| 1 | +// https://github.com/scalacommunitybuild/doobie.git#community-build-2.12 # was tpolecat, series/0.6.x |
2 | 2 |
|
3 | 3 | // dependency of scala-pet-store
|
4 | 4 |
|
| 5 | +// forked (January 2021) to align versions of things with community build |
| 6 | +// in order to faciliate reproducing errors outside dbuild |
| 7 | + |
5 | 8 | vars.proj.doobie: ${vars.base} {
|
6 | 9 | name: "doobie"
|
7 |
| - uri: "https://github.com/tpolecat/doobie.git#6eb0fd53c237b13d3fb5d705d6b0bc52a6d0e0ca" |
| 10 | + uri: "https://github.com/scalacommunitybuild/doobie.git#8d12d531250d671ef7c95cb2f1fff0cad055debc" |
8 | 11 |
|
9 | 12 | extra.options: ["-Xss16m"] // prevent stack overflow when compiling build definition
|
10 | 13 | extra.exclude: ["docs", "doobie", "bench"] // out of scope ("doobie" is just an aggregation, and causes missing-tut error)
|
11 |
| - deps.inject: ${vars.base.deps.inject} ["org.typelevel#kind-projector"] |
12 | 14 | extra.commands: ${vars.default-commands} [
|
13 |
| - "removeDependency org.spire-math kind-projector" |
14 |
| - """set libraryDependencies in ThisBuild += compilerPlugin("org.typelevel" %% "kind-projector" % "0.0.0")""" |
15 | 15 | // as per https://github.com/scala/community-builds/pull/835#issuecomment-455729365,
|
16 | 16 | // these subprojects require a Postgres instance for the tests to run
|
17 |
| - "set executeTests in postgres in Test := Tests.Output(TestResult.Passed, Map(), Iterable())" |
18 |
| - "set executeTests in `postgres-circe` in Test := Tests.Output(TestResult.Passed, Map(), Iterable())" |
19 |
| - "set executeTests in example in Test := Tests.Output(TestResult.Passed, Map(), Iterable())" |
| 17 | + "set postgres / Test / executeTests := Tests.Output(TestResult.Passed, Map(), Iterable())" |
| 18 | + "set `postgres-circe` / Test / executeTests := Tests.Output(TestResult.Passed, Map(), Iterable())" |
| 19 | + "set example / Test / executeTests := Tests.Output(TestResult.Passed, Map(), Iterable())" |
20 | 20 | ]
|
21 | 21 | }
|
0 commit comments