forked from sbt/sbt-osgi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More changes for sbt 0.13, also refactoring build according to effect…
…ive sbt rules
- Loading branch information
Heiko Seeberger
committed
Jul 8, 2013
1 parent
227caca
commit b6a0a6d
Showing
6 changed files
with
29 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import sbt._ | ||
|
||
object Library { | ||
|
||
// Versions | ||
val bndVersion = "2.1.0" | ||
val specs2Version = "1.14" | ||
|
||
// Libraries | ||
val bndLib = "biz.aQute.bnd" % "bndlib" % bndVersion | ||
val specs2 = "org.specs2" %% "specs2" % specs2Version | ||
} | ||
|
||
object Dependencies { | ||
|
||
import Library._ | ||
|
||
val sbtOsgi = List( | ||
bndLib, | ||
specs2 % "test" | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=0.13.0-Beta2 | ||
sbt.version=0.13.0-RC1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.1.0") | ||
|
||
libraryDependencies += ("org.scala-sbt" % "scripted-plugin" % sbtVersion.value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters