Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sbt to 1.9.3 #679

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ lazy val commonSettings = Seq(
devMode := Option(System.getProperty("devMode")).isDefined,
writeClasspath := {
val f = file(s"/tmp/classpath_${organization.value}.${name.value}")
val classpath = (fullClasspath in Test).value
val classpath = ((Test / fullClasspath)).value
IO.write(f, classpath.map(_.data).mkString(":"))
streams.value.log.info(f.getAbsolutePath)
f
},
// test config
testOptions in IntegrationTest := Seq(Tests.Filter(_ endsWith "ITest"), Tests.Argument("-oF")),
(IntegrationTest / testOptions) := Seq(Tests.Filter(_ endsWith "ITest"), Tests.Argument("-oF")),
// Maven config
credentials += Credentials(
"Sonatype Nexus Repository Manager",
Expand All @@ -57,7 +57,7 @@ lazy val commonSettings = Seq(
pgpPassphrase := sys.env.get("SONATYPE_PASSWORD").map(_.toArray),
pgpSecretRing := file(".secring.gpg"),
pgpPublicRing := file(".pubring.gpg"),
pomExtra in Global := {
(Global / pomExtra) := {
<url>https://github.com/criteo/cuttle</url>
<licenses>
<license>
Expand Down Expand Up @@ -164,10 +164,10 @@ def removeDependencies(groups: String*)(xml: scala.xml.Node) = {
}

def webpackSettings(project: String) = List(
resourceGenerators in Compile += Def.task {
(Compile / resourceGenerators) += Def.task {
import scala.sys.process._
val streams0 = streams.value
val webpackOutputDir: File = (resourceManaged in Compile).value / "public" / project
val webpackOutputDir: File = ((Compile / resourceManaged)).value / "public" / project
if (devMode.value) {
streams0.log.warn(s"Skipping webpack resource generation.")
Nil
Expand Down Expand Up @@ -282,7 +282,7 @@ lazy val cron =
libraryDependencies += "com.github.alonsodomin.cron4s" %% "cron4s-core" % "0.4.5"
)
.settings(
fork in Test := true
(Test / fork) := true
)
.settings(webpackSettings("cron"))
.dependsOn(cuttle % "compile->compile;test->test")
Expand All @@ -297,8 +297,8 @@ lazy val examples =
)
.settings(
publishArtifact := false,
fork in Test := true,
connectInput in Test := true,
(Test / fork) := true,
(Test / connectInput) := true,
javaOptions ++= Seq("-Xmx256m", "-XX:+HeapDumpOnOutOfMemoryError")
)
.settings(
Expand All @@ -324,7 +324,7 @@ lazy val root =
.settings(commonSettings: _*)
.settings(
publishArtifact := false,
scalacOptions in (ScalaUnidoc, unidoc) ++= Seq(
(ScalaUnidoc / unidoc / scalacOptions) ++= Seq(
Seq(
"-sourcepath",
baseDirectory.value.getAbsolutePath
Expand All @@ -337,11 +337,11 @@ lazy val root =
(baseDirectory.value / "core/src/main/scala/root.scala").getAbsolutePath
)
).flatten,
unidocAllAPIMappings in (ScalaUnidoc, unidoc) ++= {
(ScalaUnidoc / unidoc / unidocAllAPIMappings) ++= {
val allJars = {
(fullClasspath in cuttle in Compile).value ++
(fullClasspath in timeseries in Compile).value ++
(fullClasspath in cron in Compile).value
((Compile / fullClasspath in cuttle)(cuttle / fullClasspath)).value ++
((Compile / fullClasspath in timeseries)(timeseries / fullClasspath)).value ++
((Compile / fullClasspath in cron)(cron / fullClasspath)).value
}
Seq(
allJars
Expand All @@ -359,6 +359,6 @@ lazy val root =
.toMap
)
},
unidocProjectFilter in (ScalaUnidoc, unidoc) := inProjects(cuttle, timeseries, cron)
(ScalaUnidoc / unidoc / unidocProjectFilter) := inProjects(cuttle, timeseries, cron)
)
.aggregate(cuttle, timeseries, cron, examples, localdb)
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.2.8
sbt.version=1.9.3
Loading