Skip to content
This repository has been archived by the owner on Nov 16, 2017. It is now read-only.

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Feb 15, 2015
1 parent 70d3353 commit 3976b37
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build.sbt
@@ -1,6 +1,6 @@
lazy val commonSettings = Seq(
organization := "org.scala-sbt",
version := "0.1.0-SNAPSHOT"
version := "0.1.0"
)

lazy val root = (project in file(".")).
Expand All @@ -11,5 +11,13 @@ lazy val root = (project in file(".")).
: _*).
settings(
sbtPlugin := true,
name := "sbt-houserules"
name := "sbt-houserules",
description := "sbt plugin for enforcing sbt house rules.",
licenses := Seq("Apache v2" -> url("https://github.com/sbt/sbt-houserules/blob/master/LICENSE")),
publishMavenStyle := false,
publishTo := {
if (isSnapshot.value) Some(Resolver.sbtPluginRepo("snapshots"))
else Some(Resolver.sbtPluginRepo("releases"))
},
credentials += Credentials(Path.userHome / ".ivy2" / ".sbtcredentials")
)

0 comments on commit 3976b37

Please sign in to comment.