mirror of https://github.com/sbt/sbt.git
Fixes project/extra
This commit is contained in:
parent
cc090344d9
commit
baadd76544
|
|
@ -1,15 +1,16 @@
|
||||||
ivyPaths := IvyPaths(baseDirectory.value, Some(target.value / "ivy-cache"))
|
lazy val root = (project in file("."))
|
||||||
|
.settings(
|
||||||
publishMavenStyle := false
|
organization := "org.scala-sbt",
|
||||||
|
version := "1.0-SNAPSHOT",
|
||||||
publishTo := (baseDirectory { base =>
|
name := "define-color",
|
||||||
Some(Resolver.file("test-repo", base / "repo" / "test")(Resolver.defaultIvyPatterns))
|
projectID := {
|
||||||
}).value
|
val old = projectID.value
|
||||||
|
old.extra("e:color" -> "red")
|
||||||
projectID := (projectID { _.extra("e:color" -> "red") }).value
|
},
|
||||||
|
ivyPaths := IvyPaths(baseDirectory.value, Some(target.value / "ivy-cache")),
|
||||||
organization := "org.scala-sbt"
|
publishMavenStyle := false,
|
||||||
|
publishTo := {
|
||||||
version := "1.0"
|
val base = baseDirectory.value
|
||||||
|
Some(Resolver.file("test-repo", base / "repo" / "test")(Resolver.defaultIvyPatterns))
|
||||||
name := "define-color"
|
}
|
||||||
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue