Skip to content

Commit 1c44d38

Browse files
committed
Add root project
1 parent f658afc commit 1c44d38

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.sbt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ val scala212 = "2.12.12"
66
val scala213 = "2.13.2"
77
val scala30 = "3.0.0"
88

9-
val commonSettings = commonSmlBuildSettings ++ ossPublishSettings
9+
val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ List(
10+
organization := "com.softwaremill.retry"
11+
)
12+
13+
lazy val rootProject = (project in file("."))
14+
.settings(commonSettings: _*)
15+
.settings(publish / skip := true, name := "retry", scalaVersion := scala213)
16+
.aggregate(retry.projectRefs: _*)
1017

1118
lazy val retry = (projectMatrix in file("retry"))
1219
.settings(commonSettings: _*)
1320
.settings(
1421
scalacOptions += "-feature",
15-
organization := "com.softwaremill.retry",
1622
moduleName := "retry",
1723
name := "retry",
1824
description := "a library of simple primitives for asynchronously retrying Scala Futures",

0 commit comments

Comments
 (0)