mirror of https://github.com/sbt/sbt.git
sbt-doge 0.1.3
This commit is contained in:
parent
4fe9fadea3
commit
9cf264cd84
21
build.sbt
21
build.sbt
|
|
@ -108,15 +108,15 @@ lazy val apiProj = (project in compilePath / "api").
|
||||||
lazy val controlProj = (project in utilPath / "control").
|
lazy val controlProj = (project in utilPath / "control").
|
||||||
settings(baseSettings ++ Util.crossBuild: _*).
|
settings(baseSettings ++ Util.crossBuild: _*).
|
||||||
settings(
|
settings(
|
||||||
name := "Control"
|
name := "Control",
|
||||||
// crossScalaVersions := Seq(scala210, scala211)
|
crossScalaVersions := Seq(scala210, scala211)
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val collectionProj = (project in utilPath / "collection").
|
lazy val collectionProj = (project in utilPath / "collection").
|
||||||
settings(testedBaseSettings ++ Util.keywordsSettings ++ Util.crossBuild: _*).
|
settings(testedBaseSettings ++ Util.keywordsSettings ++ Util.crossBuild: _*).
|
||||||
settings(
|
settings(
|
||||||
name := "Collections"
|
name := "Collections",
|
||||||
// crossScalaVersions := Seq(scala210, scala211)
|
crossScalaVersions := Seq(scala210, scala211)
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val applyMacroProj = (project in utilPath / "appmacro").
|
lazy val applyMacroProj = (project in utilPath / "appmacro").
|
||||||
|
|
@ -142,8 +142,8 @@ lazy val ioProj = (project in utilPath / "io").
|
||||||
settings(testedBaseSettings ++ Util.crossBuild: _*).
|
settings(testedBaseSettings ++ Util.crossBuild: _*).
|
||||||
settings(
|
settings(
|
||||||
name := "IO",
|
name := "IO",
|
||||||
libraryDependencies += scalaCompiler.value % Test
|
libraryDependencies += scalaCompiler.value % Test,
|
||||||
// crossScalaVersions := Seq(scala210, scala211)
|
crossScalaVersions := Seq(scala210, scala211)
|
||||||
)
|
)
|
||||||
|
|
||||||
// Utilities related to reflection, managing Scala versions, and custom class loaders
|
// Utilities related to reflection, managing Scala versions, and custom class loaders
|
||||||
|
|
@ -161,8 +161,8 @@ lazy val completeProj = (project in utilPath / "complete").
|
||||||
settings(testedBaseSettings ++ Util.crossBuild: _*).
|
settings(testedBaseSettings ++ Util.crossBuild: _*).
|
||||||
settings(
|
settings(
|
||||||
name := "Completion",
|
name := "Completion",
|
||||||
libraryDependencies += jline
|
libraryDependencies += jline,
|
||||||
// crossScalaVersions := Seq(scala210, scala211)
|
crossScalaVersions := Seq(scala210, scala211)
|
||||||
)
|
)
|
||||||
|
|
||||||
// logging
|
// logging
|
||||||
|
|
@ -603,11 +603,6 @@ def customCommands: Seq[Setting[_]] = Seq(
|
||||||
"precompiled-2_9_2/publishSigned" ::
|
"precompiled-2_9_2/publishSigned" ::
|
||||||
"precompiled-2_9_3/publishSigned" ::
|
"precompiled-2_9_3/publishSigned" ::
|
||||||
"publishLauncher" ::
|
"publishLauncher" ::
|
||||||
"++2.11.1" ::
|
|
||||||
"controlProj/publishSigned" ::
|
|
||||||
"collectionProj/publishSigned" ::
|
|
||||||
"ioProj/publishSigned" ::
|
|
||||||
"completeProj/publishSigned" ::
|
|
||||||
state
|
state
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue