File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ val scalacOption = Def.setting {
1616}
1717
1818lazy val root = (project in file(" ." )).aggregate(core, scala2macros)
19- .settings(
20- publish / skip := true
21- )
19+ .settings(
20+ publish / skip := true
21+ )
2222
23- lazy val publish = Seq (
23+ lazy val publishSettings = Seq (
2424 licenses := Seq (" Apache 2.0 License" -> url(" http://www.apache.org/licenses/LICENSE-2.0.html" )),
2525 homepage := Some (url(" https://github.com/lightbend/scala-logging" )),
2626 Test / publishArtifact := false ,
@@ -65,7 +65,7 @@ lazy val core = (project in file("core"))
6565 ).settings(
6666 // OSGi
6767 osgiSettings,
68- publish
68+ publishSettings
6969 ).settings(
7070 OsgiKeys .bundleSymbolicName := " com.typesafe.scala-logging" ,
7171 OsgiKeys .privatePackage := Seq (),
@@ -79,7 +79,7 @@ lazy val scala2macros = project
7979 scalaVersion := scala213,
8080 crossScalaVersions := scala2,
8181 libraryDependencies ++= Dependencies .scalaLogging(scalaVersion.value, false ),
82- ).settings(publish )
82+ ).settings(publishSettings )
8383
8484lazy val `integration-test` = project.in(file(" integration-test" ))
8585 .settings(
You can’t perform that action at this time.
0 commit comments