Skip to content

Commit

Permalink
Upgrade to latest dependencies 2019-04-19
Browse files Browse the repository at this point in the history
  • Loading branch information
jletroui committed Apr 19, 2019
1 parent 5e2ac90 commit cd72d01
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You can download frac in the "Release" section of the Github repository.
You need a Java runtime 8 or greater in order to run frac. On most systems, just double click on the jar you downloaded.
You can also type this command in a terminal:

java -jar frac-1.0.5.jar
java -jar frac-1.0.6.jar

Most basic definition
=====================
Expand Down
11 changes: 5 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "frac"

version := "1.0.5"
version := "1.0.6"

organization := "ca.frac"

scalaVersion := "2.11.6"
scalaVersion := "2.12.8"

scalacOptions := Seq("-encoding", "utf8")

Expand All @@ -13,12 +13,11 @@ crossPaths := false
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"

libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-swing" % "1.0.1" % "compile",
"org.parboiled" %% "parboiled-scala" % "1.1.7" % "compile",
"org.specs2" %% "specs2-core" % "3.0.1" % "test"
"org.scala-lang.modules" %% "scala-swing" % "2.1.1" % "compile",
"org.parboiled" %% "parboiled-scala" % "1.3.0" % "compile",
"org.specs2" %% "specs2-core" % "4.3.4" % "test"
)

mainClass in assembly := Some("frac.Main")

jarName in assembly := s"${name.value}-${version.value}.jar"

2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.7
sbt.version=1.2.8
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.13.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")

0 comments on commit cd72d01

Please sign in to comment.