Skip to content

Commit

Permalink
Merge pull request #316 from scala-native/topic/no-sonatype
Browse files Browse the repository at this point in the history
Make sure sonatype resolver is not used
  • Loading branch information
densh committed Oct 5, 2016
2 parents 2cc7638 + 82621ce commit 5573c6f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,17 @@ lazy val toolSettings =
)

lazy val libSettings =
(baseSettings ++ ScalaNativePlugin.projectSettings.tail) :+
(scalaVersion := libScalaVersion)
(baseSettings ++ ScalaNativePlugin.projectSettings.tail) ++ Seq(
scalaVersion := libScalaVersion,
resolvers := Nil
)

lazy val projectSettings =
ScalaNativePlugin.projectSettings ++ Seq(
scalaVersion := libScalaVersion,
nativeVerbose := true,
nativeClangOptions ++= Seq("-O0")
nativeClangOptions ++= Seq("-O0"),
resolvers := Nil
)

lazy val util =
Expand Down

0 comments on commit 5573c6f

Please sign in to comment.