Skip to content

Commit 908ed81

Browse files
committed
Upgrades version to 3.20
1 parent 1910017 commit 908ed81

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

.gitignore

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
1+
etc/bootstrap-local.conf
2+
3+
.class
4+
*.log
5+
.history
6+
7+
target/
8+
lib_managed/
9+
src_managed/
10+
project/boot/
11+
project/plugins/project/
12+
project/activator-sbt*
13+
14+
.env
15+
16+
# IntelliJ
17+
.idea/
18+
*.iml
19+
*.iws
20+
21+
# Metals
22+
.metals/
23+
.bloop/
24+
25+
# Mac
126
.DS_Store
2-
target
3-
project/boot
27+
28+
# vim swap files
429
*.swp
5-
.idea
30+
.*.swp
31+
32+
.vscode

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ lazy val commonSettings: Seq[Setting[_]] = Seq(
66
organization := "net.debasishg",
77
version := "3.20",
88
scalaVersion := "2.12.10",
9-
crossScalaVersions := Seq("2.12.10", "2.11.12", "2.10.7", "2.13.0"),
9+
crossScalaVersions := Seq("2.12.10", "2.11.12", "2.10.7", "2.13.1"),
1010

1111
scalacOptions in Compile ++= Seq( "-unchecked", "-feature", "-language:postfixOps", "-deprecation" ),
1212

1313
resolvers ++= Seq(
14-
"typesafe repo" at "http://repo.typesafe.com/typesafe/releases/"
14+
("typesafe repo" at "http://repo.typesafe.com/typesafe/releases/").withAllowInsecureProtocol(true)
1515
)
1616
)
1717

0 commit comments

Comments
 (0)