Skip to content

Commit

Permalink
Changes for sbt 0.11.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Heiko Seeberger committed May 7, 2012
1 parent 960bc91 commit 00368ce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* limitations under the License.
*/

import com.typesafe.sbtscalariform.ScalariformPlugin._
/*import com.typesafe.sbtscalariform.ScalariformPlugin._
import name.heikoseeberger.sbtproperties.PropertiesPlugin._
import posterous.Publish._
import sbtrelease._
import sbtrelease._*/
import sbt._
import sbt.Keys._
import sbt.ScriptedPlugin._
/*import sbt.ScriptedPlugin._*/

object Build extends Build {

Expand All @@ -31,8 +31,8 @@ object Build extends Build {
file("."),
aggregate = Seq(sbteclipseCore, sbteclipsePlugin),
settings = commonSettings ++ Seq(
publishArtifact := false,
aggregate in Posterous := false
publishArtifact := false/*,
aggregate in Posterous := false*/
)
)

Expand Down Expand Up @@ -63,7 +63,7 @@ object Build extends Build {
Some(if (version endsWith "SNAPSHOT") Classpaths.typesafeSnapshots else Classpaths.typesafeResolver)
),
publishMavenStyle := false
) ++
)/* ++
posterousSettings ++ Seq(
(email in Posterous) <<= PropertiesKeys.properties(_ get "posterous.email"),
(password in Posterous) <<= PropertiesKeys.properties(_ get "posterous.password")
Expand All @@ -89,5 +89,5 @@ object Build extends Build {
}
) ++
scalariformSettings ++
scriptedSettings
scriptedSettings*/
}
14 changes: 7 additions & 7 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ resolvers ++= Seq(
Resolver.url("heikoseeberger", new URL("http://hseeberger.github.com/releases"))(Resolver.ivyStylePatterns)
)

addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.4")
//addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.4")

addSbtPlugin("com.typesafe.sbtscalariform" % "sbtscalariform" % "0.3.1")
//addSbtPlugin("com.typesafe.sbtscalariform" % "sbtscalariform" % "0.3.1")

addSbtPlugin("name.heikoseeberger.sbtproperties" % "sbtproperties" % "1.0.1")
//addSbtPlugin("name.heikoseeberger.sbtproperties" % "sbtproperties" % "1.0.1")

addSbtPlugin("net.databinder" % "posterous-sbt" % "0.3.2")
//addSbtPlugin("net.databinder" % "posterous-sbt" % "0.3.2")

libraryDependencies <+= (sbtVersion)(sbtVersion =>
"org.scala-tools.sbt" %% "scripted-plugin" % sbtVersion
)
//libraryDependencies <+= (sbtVersion)(sbtVersion =>
// "org.scala-tools.sbt" %% "scripted-plugin" % sbtVersion
//)

0 comments on commit 00368ce

Please sign in to comment.