Skip to content

Commit

Permalink
simplify seed (simple sbt build/no test) fix scala#2
Browse files Browse the repository at this point in the history
  • Loading branch information
MasseGuillaume committed Jan 31, 2017
1 parent 87a6096 commit 4f17bd6
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 28 deletions.
File renamed without changes.
13 changes: 1 addition & 12 deletions src/main/g8/build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1 @@
import Dependencies._

lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.12.1",
version := "0.1.0-SNAPSHOT"
)),
name := "Hello",
libraryDependencies += scalaTest % Test
)
scalaVersion := "2.12.1"
2 changes: 0 additions & 2 deletions src/main/g8/default.properties

This file was deleted.

5 changes: 0 additions & 5 deletions src/main/g8/project/Dependencies.scala

This file was deleted.

5 changes: 5 additions & 0 deletions src/main/g8/src/main/scala/Main.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
object Main {
def main(args: Array[String]): Unit = {
println("Hello, World!")
}
}
9 changes: 0 additions & 9 deletions src/main/g8/src/test/scala/example/HelloSpec.scala

This file was deleted.

0 comments on commit 4f17bd6

Please sign in to comment.