Skip to content

Commit

Permalink
Fix artifact naming
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jun 12, 2019
1 parent ffe090b commit 3df3283
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
17 changes: 8 additions & 9 deletions build.sbt
Expand Up @@ -24,17 +24,15 @@ val buildSettings = Defaults.coreDefaultSettings ++ Seq(
false
},
developers := List(
Developer("adamw",
"Adam Warski",
"adam@warski.org",
url("http://www.warski.org"))
Developer("adamw", "Adam Warski", "adam@warski.org", url("http://www.warski.org"))
),
scmInfo := Some(
ScmInfo(browseUrl = url("https://github.com/adamw/quicklens"),
connection = "scm:git:git@github.com:adamw/quicklens.git")
ScmInfo(
browseUrl = url("https://github.com/adamw/quicklens"),
connection = "scm:git:git@github.com:adamw/quicklens.git"
)
),
licenses := Seq(
"Apache2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")),
licenses := Seq("Apache2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")),
homepage := Some(url("http://www.softwaremill.com")),
sonatypeProfileName := "com.softwaremill",
// sbt-release
Expand All @@ -55,6 +53,7 @@ lazy val quicklens = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.crossType(CrossType.Pure)
.settings(buildSettings)
.settings(
name := "quicklens",
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value,
Test / publishArtifact := false,
libraryDependencies ++= Seq("org.scala-lang" % "scala-compiler" % scalaVersion.value % Test),
Expand All @@ -67,7 +66,7 @@ lazy val quicklens = crossProject(JVMPlatform, JSPlatform, NativePlatform)
case Some((2, n)) if n >= 13 => sourceDir / "scala-2.13+"
case _ => sourceDir / "scala-2.13-"
}
},
}
)
.jvmSettings(
// Otherwise when running tests in sbt, the macro is not visible
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
@@ -1 +1 @@
version in ThisBuild := "1.4.13-SNAPSHOT"
version in ThisBuild := "1.4.12"

0 comments on commit 3df3283

Please sign in to comment.