mirror of https://github.com/sbt/sbt.git
Merge pull request #4470 from eed3si9n/wip/publish-using-jdk8
[0.13] give up on publishing using JDK 1.6
This commit is contained in:
commit
7782839fee
|
|
@ -1 +1 @@
|
|||
1.6
|
||||
1.8
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ def commonSettings: Seq[Setting[_]] = Seq(
|
|||
|
||||
def minimalSettings: Seq[Setting[_]] =
|
||||
commonSettings ++ customCommands ++
|
||||
publishPomSettings ++ Release.javaVersionCheckSettings
|
||||
publishPomSettings
|
||||
|
||||
def baseSettings: Seq[Setting[_]] =
|
||||
minimalSettings ++ Seq(projectComponent) ++ baseScalacOptions ++ Licensed.settings ++ Formatting.settings
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import sbt._
|
||||
import Keys._
|
||||
import com.typesafe.sbt.JavaVersionCheckPlugin.autoImport._
|
||||
import _root_.bintray.BintrayPlugin.autoImport._
|
||||
import _root_.bintray.InternalBintrayKeys._
|
||||
|
||||
|
|
@ -15,8 +14,4 @@ object Release {
|
|||
repo.upload(bintrayPackage.value, version.value, launcherRemotePath.value, launcher.value, sLog.value)
|
||||
}
|
||||
)
|
||||
|
||||
def javaVersionCheckSettings = Seq(
|
||||
javaVersionPrefix in javaVersionCheck := Some("1.6")
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ scalaVersion := "2.10.6"
|
|||
addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
|
||||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")
|
||||
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5")
|
||||
addSbtPlugin("com.typesafe.sbt" % "sbt-javaversioncheck" % "0.1.0")
|
||||
// addSbtPlugin("com.typesafe.sbt" % "sbt-javaversioncheck" % "0.1.0")
|
||||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
|
||||
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.3.0") // 1.6.0 is out but is a hard upgrade
|
||||
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.8.2")
|
||||
|
|
|
|||
Loading…
Reference in New Issue