Skip to content

Commit

Permalink
Upgrades version to 3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
debasishg committed Nov 16, 2019
1 parent 1910017 commit 908ed81
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
33 changes: 30 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
etc/bootstrap-local.conf

.class
*.log
.history

target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
project/activator-sbt*

.env

# IntelliJ
.idea/
*.iml
*.iws

# Metals
.metals/
.bloop/

# Mac
.DS_Store
target
project/boot

# vim swap files
*.swp
.idea
.*.swp

.vscode
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ lazy val commonSettings: Seq[Setting[_]] = Seq(
organization := "net.debasishg",
version := "3.20",
scalaVersion := "2.12.10",
crossScalaVersions := Seq("2.12.10", "2.11.12", "2.10.7", "2.13.0"),
crossScalaVersions := Seq("2.12.10", "2.11.12", "2.10.7", "2.13.1"),

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

resolvers ++= Seq(
"typesafe repo" at "http://repo.typesafe.com/typesafe/releases/"
("typesafe repo" at "http://repo.typesafe.com/typesafe/releases/").withAllowInsecureProtocol(true)
)
)

Expand Down

0 comments on commit 908ed81

Please sign in to comment.