1
- val scala3 = " 3.3.3"
1
+ val scala3 = " 3.3.3"
2
2
val scala213 = " 2.13.14"
3
3
val scala212 = " 2.12.19"
4
4
5
5
inThisBuild(
6
6
Seq (
7
7
organization := " com.github.lolgab" ,
8
- version := " 0.2.1 " ,
8
+ version := " 0.3.0 " ,
9
9
scalaVersion := scala213,
10
- crossScalaVersions := Seq (scala3, scala213, scala212)
10
+ crossScalaVersions := Seq (scala3, scala213, scala212),
11
+ versionScheme := Some (" early-semver" )
11
12
)
12
13
)
13
14
@@ -25,6 +26,14 @@ val publishSettings = Seq(
25
26
url(" https://github.com/scala-native/scala-native-loop" ),
26
27
" scm:git:[email protected] :scala-native/scala-native-loop.git"
27
28
)
29
+ ),
30
+ developers := List (
31
+ Developer (
32
+ id = " lolgab" ,
33
+ name = " Lorenzo Gabriele" ,
34
+
35
+ url = url(" https://github.com/lolgab" )
36
+ )
28
37
)
29
38
)
30
39
@@ -35,11 +44,11 @@ lazy val commonSettings = Seq(
35
44
" utf8" ,
36
45
" -feature" ,
37
46
" -unchecked" ,
38
- " -Xfatal-warnings" ,
47
+ " -Xfatal-warnings"
39
48
// "-Wunused:imports"
40
49
),
41
50
libraryDependencies += " com.lihaoyi" %%% " utest" % " 0.8.3" % Test ,
42
- testFrameworks += new TestFramework (" utest.runner.Framework" ),
51
+ testFrameworks += new TestFramework (" utest.runner.Framework" )
43
52
)
44
53
45
54
lazy val core = project
@@ -56,3 +65,10 @@ lazy val scalaJsCompat = project
56
65
.settings(publishSettings)
57
66
.enablePlugins(ScalaNativePlugin )
58
67
.dependsOn(core)
68
+
69
+ lazy val root = project
70
+ .in(file(" ." ))
71
+ .aggregate(core, scalaJsCompat)
72
+ .settings(
73
+ publish / skip := true
74
+ )
0 commit comments