Skip to content

Commit

Permalink
ajustando o projeto para usar o sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
lrlucena committed Mar 21, 2019
1 parent 7b6e08d commit 62fea1a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name := "jerimum"

version := "0.9.16"

scalaVersion := "2.12.8"

javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")
scalacOptions in Compile ++= Seq("-deprecation")

assemblyOutputPath in assembly := file("./jerimum.jar")

libraryDependencies ++= Seq(
"potigol" % "potigol_2.12" % "0.9.16" % "provided"
)

EclipseKeys.withSource in ThisBuild := true
EclipseKeys.withJavadoc in ThisBuild := true
EclipseKeys.createSrc in ThisBuild := EclipseCreateSrc.Default + EclipseCreateSrc.ManagedClasses
1 change: 1 addition & 0 deletions project/assembly.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version = 1.2.8
1 change: 1 addition & 0 deletions project/eclipse.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.4")
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
logLevel := Level.Warn

0 comments on commit 62fea1a

Please sign in to comment.