@@ -9,26 +9,24 @@ cancelable in Global := true
9
9
val forIdeaImport = System .getProperty(" idea.managed" , " false" ).toBoolean && System .getProperty(" idea.runid" ) == null
10
10
11
11
val silencerVersion = " 1.7.1"
12
+ val collectionCompatVersion = " 2.1.6"
12
13
val guavaVersion = " 23.0"
13
14
val jsr305Version = " 3.0.2"
14
15
val scalatestVersion = " 3.2.1"
15
- val scalatestplusScalacheckVersion = " 3.2.1 .0"
16
+ val scalatestplusScalacheckVersion = " 3.2.2 .0"
16
17
val scalacheckVersion = " 1.14.3"
17
18
val jettyVersion = " 9.4.31.v20200723"
18
- val mongoVersion = " 3.12.7"
19
- val mongoReactiveVersion = " 1.13.1"
20
- val mongoScalaVersion = " 2.9.0"
21
- val kafkaVersion = " 2.6.0"
22
- val springVersion = " 4.0.9.RELEASE"
19
+ val mongoVersion = " 4.1.1"
20
+ val springVersion = " 4.3.26.RELEASE"
23
21
val typesafeConfigVersion = " 1.4.0"
24
22
val commonsIoVersion = " 1.3.2"
25
23
val scalaLoggingVersion = " 3.9.2"
26
- val akkaVersion = " 2.5.31 "
24
+ val akkaVersion = " 2.6.8 "
27
25
val monixVersion = " 3.3.0"
28
- val mockitoVersion = " 3.5.2 "
29
- val circeVersion = " 0.11.2 "
30
- val upickleVersion = " 0.7.4 "
31
- val scalajsBenchmarkVersion = " 0.2.6 "
26
+ val mockitoVersion = " 3.5.15 "
27
+ val circeVersion = " 0.13.0 "
28
+ val upickleVersion = " 1.2.0 "
29
+ val scalajsBenchmarkVersion = " 0.8.0 "
32
30
val slf4jVersion = " 1.7.30"
33
31
34
32
useGpg := false // TODO: use sbt-ci-release
@@ -43,15 +41,15 @@ credentials in Global += Credentials(
43
41
sys.env.getOrElse(" SONATYPE_PASSWORD" , " " )
44
42
)
45
43
46
- version in ThisBuild :=
47
- sys.env.get(" TRAVIS_TAG" ).filter(_.startsWith(" v" )).map(_.drop(1 )).getOrElse(" 1 .0-SNAPSHOT" )
44
+ version in ThisBuild :=
45
+ sys.env.get(" TRAVIS_TAG" ).filter(_.startsWith(" v" )).map(_.drop(1 )).getOrElse(" 2.0 .0-SNAPSHOT" )
48
46
49
47
// for binary compatibility checking
50
- val previousCompatibleVersions = Set (" 1.34.8 " )
48
+ val previousCompatibleVersions = Set (" 1.39.14 " )
51
49
52
50
val commonSettings = Seq (
53
51
organization := " com.avsystem.commons" ,
54
- crossScalaVersions := Seq (" 2.11 .12" , " 2.12.12 " ),
52
+ crossScalaVersions := Seq (" 2.12 .12" , " 2.13.3 " ),
55
53
scalaVersion := crossScalaVersions.value.last,
56
54
compileOrder := CompileOrder .Mixed ,
57
55
scalacOptions ++= Seq (
@@ -66,19 +64,15 @@ val commonSettings = Seq(
66
64
" -language:dynamics" ,
67
65
" -language:experimental.macros" ,
68
66
" -language:higherKinds" ,
69
- " -Xfuture" ,
70
- s " -Xlint:-missing-interpolator,-adapted-args, ${if (scalaBinaryVersion.value == " 2.12" ) " -unused," else " " }_ " ,
71
- " -P:silencer:checkUnused" ,
67
+ " -Xfatal-warnings" ,
68
+ " -Xlint:-missing-interpolator,-adapted-args,-unused,_" ,
72
69
),
73
70
scalacOptions ++= {
74
- if (scalaBinaryVersion.value != " 2.11" ) Seq (
75
- " -Xfatal-warnings" ,
71
+ if (scalaBinaryVersion.value == " 2.12" ) Seq (
76
72
" -Ycache-plugin-class-loader:last-modified" ,
77
73
" -Ycache-macro-class-loader:last-modified" ,
78
74
) else Seq .empty
79
75
},
80
- // some Java 8 related tests use Java interface static methods, Scala 2.11.12 requires JDK8 target for that
81
- scalacOptions in Test ++= (if (scalaBinaryVersion.value == " 2.11" ) Seq (" -target:jvm-1.8" ) else Nil ),
82
76
sources in(Compile , doc) := Seq .empty, // relying on unidoc
83
77
apiURL := Some (url(" http://avsystem.github.io/scala-commons/api" )),
84
78
autoAPIMappings := true ,
@@ -117,7 +111,6 @@ val commonSettings = Seq(
117
111
" org.scalatestplus" %%% " scalacheck-1-14" % scalatestplusScalacheckVersion % Test ,
118
112
" org.mockito" % " mockito-core" % mockitoVersion % Test ,
119
113
),
120
- dependencyOverrides += " org.scala-lang.modules" %% " scala-xml" % " 1.0.6" ,
121
114
ideBasePackages := Seq (organization.value),
122
115
ideOutputDirectory in Compile := Some (target.value.getParentFile / " out/production" ),
123
116
ideOutputDirectory in Test := Some (target.value.getParentFile / " out/test" ),
@@ -147,12 +140,7 @@ val jsCommonSettings = commonSettings ++ Seq(
147
140
)
148
141
149
142
val noPublishSettings = Seq (
150
- publishArtifact := false ,
151
- publish := {},
152
- publishLocal := {},
153
- publishM2 := {},
154
- PgpKeys .publishSigned := {},
155
- PgpKeys .publishLocalSigned := {},
143
+ skip in publish := true ,
156
144
mimaPreviousArtifacts := Set .empty,
157
145
)
158
146
@@ -181,10 +169,7 @@ lazy val commons = project.in(file("."))
181
169
inAnyProject -- inProjects(
182
170
`commons-analyzer`,
183
171
`commons-macros`,
184
- `commons-annotations-js`,
185
172
`commons-core-js`,
186
- `commons-rest`,
187
- `commons-rest-js`,
188
173
`commons-benchmark`,
189
174
`commons-benchmark-js`,
190
175
`commons-comprof`,
@@ -195,25 +180,19 @@ lazy val `commons-jvm` = project.in(file(".jvm"))
195
180
.aggregate(
196
181
`commons-analyzer`,
197
182
`commons-macros`,
198
- `commons-annotations`,
199
183
`commons-core`,
200
- `commons-rest`,
201
184
`commons-jetty`,
202
185
`commons-mongo`,
203
186
`commons-hocon`,
204
187
`commons-spring`,
205
188
`commons-redis`,
206
- `commons-akka`,
207
- `commons-kafka`,
208
189
`commons-benchmark`,
209
190
)
210
191
.settings(aggregateProjectSettings)
211
192
212
193
lazy val `commons-js` = project.in(file(" .js" ))
213
194
.aggregate(
214
- `commons-annotations-js`,
215
195
`commons-core-js`,
216
- `commons-rest-js`,
217
196
`commons-benchmark-js`,
218
197
)
219
198
.settings(aggregateProjectSettings)
@@ -245,31 +224,18 @@ def sameNameAs(proj: Project) =
245
224
if (forIdeaImport) Seq .empty
246
225
else Seq (name := (name in proj).value)
247
226
248
- lazy val `commons-annotations` = project
249
- .dependsOn(`commons-macros`)
250
- .settings(jvmCommonSettings)
251
-
252
- lazy val `commons-annotations-js` = project.in(`commons-annotations`.base / " js" )
253
- .enablePlugins(ScalaJSPlugin )
254
- .configure(p => if (forIdeaImport) p.dependsOn(`commons-annotations`) else p)
255
- .dependsOn(`commons-macros`)
256
- .settings(
257
- jsCommonSettings,
258
- sameNameAs(`commons-annotations`),
259
- sourceDirsSettings(_.getParentFile),
260
- )
261
-
262
227
lazy val `commons-macros` = project.settings(
263
228
jvmCommonSettings,
264
229
libraryDependencies += " org.scala-lang" % " scala-reflect" % scalaVersion.value,
265
230
)
266
231
267
232
lazy val `commons-core` = project
268
- .dependsOn(`commons-macros`, `commons-annotations` % CompileAndTest )
233
+ .dependsOn(`commons-macros`)
269
234
.settings(
270
235
jvmCommonSettings,
271
236
sourceDirsSettings(_ / " jvm" ),
272
237
libraryDependencies ++= Seq (
238
+ " org.scala-lang.modules" %% " scala-collection-compat" % collectionCompatVersion,
273
239
" com.google.code.findbugs" % " jsr305" % jsr305Version % Optional ,
274
240
" com.google.guava" % " guava" % guavaVersion % Optional ,
275
241
" io.monix" %% " monix" % monixVersion % Optional ,
@@ -279,32 +245,18 @@ lazy val `commons-core` = project
279
245
lazy val `commons-core-js` = project.in(`commons-core`.base / " js" )
280
246
.enablePlugins(ScalaJSPlugin )
281
247
.configure(p => if (forIdeaImport) p.dependsOn(`commons-core`) else p)
282
- .dependsOn(`commons-macros`, `commons-annotations-js` % CompileAndTest )
248
+ .dependsOn(`commons-macros`)
283
249
.settings(
284
250
jsCommonSettings,
285
251
sameNameAs(`commons-core`),
286
252
sourceDirsSettings(_.getParentFile),
287
- )
288
-
289
- lazy val `commons-rest` = project
290
- .dependsOn(`commons-core` % CompileAndTest )
291
- .settings(
292
- jvmCommonSettings,
293
- sourceDirsSettings(_ / " jvm" ),
294
- )
295
-
296
- lazy val `commons-rest-js` = project.in(`commons-rest`.base / " js" )
297
- .enablePlugins(ScalaJSPlugin )
298
- .configure(p => if (forIdeaImport) p.dependsOn(`commons-rest`) else p)
299
- .dependsOn(`commons-core-js` % CompileAndTest )
300
- .settings(
301
- jsCommonSettings,
302
- sameNameAs(`commons-rest`),
303
- sourceDirsSettings(_.getParentFile),
253
+ libraryDependencies ++= Seq (
254
+ " org.scala-lang.modules" %%% " scala-collection-compat" % collectionCompatVersion,
255
+ )
304
256
)
305
257
306
258
lazy val `commons-jetty` = project
307
- .dependsOn(`commons-core` % CompileAndTest , `commons-rest` % OptionalCompileAndTest )
259
+ .dependsOn(`commons-core` % CompileAndTest )
308
260
.settings(
309
261
jvmCommonSettings,
310
262
libraryDependencies ++= Seq (
@@ -318,19 +270,12 @@ lazy val `commons-jetty` = project
318
270
)
319
271
320
272
lazy val `commons-benchmark` = project
321
- .dependsOn(`commons-rest`, `commons-akka`, `commons- redis`, `commons-mongo`)
273
+ .dependsOn(`commons-redis`, `commons-mongo`)
322
274
.enablePlugins(JmhPlugin )
323
275
.settings(
324
276
jvmCommonSettings,
325
277
noPublishSettings,
326
278
sourceDirsSettings(_ / " jvm" ),
327
- libraryDependencies ++= {
328
- if (scalaBinaryVersion.value != " 2.12" ) Seq (
329
- " com.github.etaty" %% " rediscala" % " 1.6.0" ,
330
- " com.livestream" %% " scredis" % " 2.0.8" ,
331
- )
332
- else Seq .empty
333
- },
334
279
libraryDependencies ++= Seq (
335
280
" io.circe" %% " circe-core" % circeVersion,
336
281
" io.circe" %% " circe-generic" % circeVersion,
@@ -344,7 +289,7 @@ lazy val `commons-benchmark` = project
344
289
lazy val `commons-benchmark-js` = project.in(`commons-benchmark`.base / " js" )
345
290
.enablePlugins(ScalaJSPlugin )
346
291
.configure(p => if (forIdeaImport) p.dependsOn(`commons-benchmark`) else p)
347
- .dependsOn(`commons-macros`, `commons-rest -js`)
292
+ .dependsOn(`commons-core -js`)
348
293
.settings(
349
294
jsCommonSettings,
350
295
noPublishSettings,
@@ -371,19 +316,9 @@ lazy val `commons-mongo` = project
371
316
" com.google.guava" % " guava" % guavaVersion,
372
317
" io.monix" %% " monix" % monixVersion,
373
318
" org.mongodb" % " mongodb-driver-core" % mongoVersion,
374
- " org.mongodb" % " mongodb-driver" % mongoVersion % Optional ,
375
- " org.mongodb" % " mongodb-driver-async" % mongoVersion % Optional ,
376
- " org.mongodb" % " mongodb-driver-reactivestreams" % mongoReactiveVersion % Optional ,
377
- " org.mongodb.scala" %% " mongo-scala-driver" % mongoScalaVersion % Optional ,
378
- ),
379
- )
380
-
381
- lazy val `commons-kafka` = project
382
- .dependsOn(`commons-core` % CompileAndTest )
383
- .settings(
384
- jvmCommonSettings,
385
- libraryDependencies ++= Seq (
386
- " org.apache.kafka" % " kafka-streams" % kafkaVersion,
319
+ " org.mongodb" % " mongodb-driver-sync" % mongoVersion % Optional ,
320
+ " org.mongodb" % " mongodb-driver-reactivestreams" % mongoVersion % Optional ,
321
+ " org.mongodb.scala" %% " mongo-scala-driver" % mongoVersion % Optional ,
387
322
),
388
323
)
389
324
@@ -418,18 +353,6 @@ lazy val `commons-spring` = project
418
353
),
419
354
)
420
355
421
- lazy val `commons-akka` = project
422
- .dependsOn(`commons-core` % CompileAndTest )
423
- .settings(
424
- jvmCommonSettings,
425
- libraryDependencies ++= Seq (
426
- " com.typesafe.akka" %% " akka-actor" % akkaVersion,
427
- " com.typesafe.akka" %% " akka-remote" % akkaVersion,
428
- " io.monix" %% " monix" % monixVersion,
429
- " com.typesafe.akka" %% " akka-testkit" % akkaVersion % Test ,
430
- ),
431
- )
432
-
433
356
lazy val `commons-comprof` = project
434
357
.dependsOn(`commons-core`)
435
358
.settings(
@@ -450,7 +373,7 @@ lazy val `commons-comprof` = project
450
373
val originalContent = IO .read(originalSrc)
451
374
(0 until 100 ).map { i =>
452
375
val pkg = f " oa $i%02d "
453
- val newContent = originalContent.replaceAllLiterally (" package rest" , s " package rest \n package $pkg" )
376
+ val newContent = originalContent.replace (" package rest" , s " package rest \n package $pkg" )
454
377
val newFile = (sourceManaged in Compile ).value / pkg / " RestTestApi.scala"
455
378
IO .write(newFile, newContent)
456
379
newFile
0 commit comments