Skip to content

Commit

Permalink
feat: sbt build
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriousSoftware committed Dec 20, 2019
1 parent bf58209 commit 48deb04
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 47 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/.idea/
/target/classes/app/
/out/artifacts/HelloServiceProjectJB_war_exploded/
/HelloServiceProjectJB.iml
/null/
/out/
target/
22 changes: 22 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
organization := "com.micronautics" // TODO provide your organization's information

name := "HelloServiceProjectJB"

version := "0.1"

scalaVersion := "2.13.1"

javacOptions ++= Seq(
"-Xlint:deprecation",
"-Xlint:unchecked",
"-source", "13",
"-target", "13",
"-g:vars"
)

libraryDependencies ++= Seq(
"javax.servlet" % "javax.servlet-api" % "4.0.1" % "provided",
"javax.servlet.jsp" % "javax.servlet.jsp-api" % "2.3.3" % "provided",
"org.scalatest" %% "scalatest" % "3.1.0" % Test withSources(),
"junit" % "junit" % "4.12" % Test
)
45 changes: 0 additions & 45 deletions pom.xml

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 = 1.3.5

0 comments on commit 48deb04

Please sign in to comment.