Skip to content

Commit

Permalink
Upgraded dependencies to latest SBT + Scala
Browse files Browse the repository at this point in the history
  • Loading branch information
jletrouit committed Mar 10, 2015
1 parent 38fd79d commit fd69ce8
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 43 deletions.
24 changes: 24 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name := "frac"

version := "1.0.5"

organization := "ca.frac"

scalaVersion := "2.11.6"

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

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"
)

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

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

35 changes: 0 additions & 35 deletions project/Build.scala

This file was deleted.

1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=0.13.7
8 changes: 1 addition & 7 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
resolvers += "sbt-idea-repo" at "http://mpeltonen.github.com/maven/"

addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.1.0")

resolvers += Resolver.url("artifactory", url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.8.4")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.13.0")
2 changes: 1 addition & 1 deletion src/main/scala/frac/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ object Main extends SimpleSwingApplication {
}

lazy val topFrame = new MainFrame {
title = "Frac 1.0.1"
title = "Frac 1.0.5"
contents = new BorderPanel {
preferredSize = (1600,1000)
opaque = true
Expand Down

0 comments on commit fd69ce8

Please sign in to comment.