File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,19 @@ val scala212 = "2.12.12"
6
6
val scala213 = " 2.13.2"
7
7
val scala30 = " 3.0.0"
8
8
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: _* )
10
17
11
18
lazy val retry = (projectMatrix in file(" retry" ))
12
19
.settings(commonSettings : _* )
13
20
.settings(
14
21
scalacOptions += " -feature" ,
15
- organization := " com.softwaremill.retry" ,
16
22
moduleName := " retry" ,
17
23
name := " retry" ,
18
24
description := " a library of simple primitives for asynchronously retrying Scala Futures" ,
You can’t perform that action at this time.
0 commit comments