Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ginkel committed Nov 24, 2010
0 parents commit e758204
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions project/build.properties
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,7 @@
project.organization=com.ginkel
project.name=minimal-project
sbt.version=0.7.5.RC0
project.version=1.0
def.scala.version=2.8.1
build.scala.versions=2.8.1
project.initialize=false
11 changes: 11 additions & 0 deletions project/build/Project.scala
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,11 @@
import sbt._

class MinimalProject(info: ProjectInfo) extends DefaultWebProject(info) with AkkaProject {
// akka
val akkaKernel = akkaModule("kernel")
val akkaHTTP = akkaModule("http")

override def repositories = Set(
"scala-tools-snapshots" at "http://scala-tools.org/repo-snapshots/",
)
}
5 changes: 5 additions & 0 deletions project/plugins/Plugins.scala
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
import sbt._

class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.0-SNAPSHOT"
}

0 comments on commit e758204

Please sign in to comment.