Skip to content

Commit

Permalink
Initial g8 scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
fayimora committed Aug 15, 2013
0 parents commit 31b7dc7
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target/
boot/
lib_managed/
src_managed/
project/plugins/project/
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
seq(giter8Settings :_*)
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.11.3
6 changes: 6 additions & 0 deletions project/project/plugins.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import sbt._
object PluginDef extends Build {
lazy val root = Project("plugins", file(".")) dependsOn( g8plugin )
lazy val g8plugin =
ProjectRef(uri("git://github.com/n8han/giter8#0.4.5.1"), "giter8-plugin")
}
1 change: 1 addition & 0 deletions src/main/g8/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// give the user a nice default project!
2 changes: 2 additions & 0 deletions src/main/g8/default.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name=My Something Project
description=Say something about this template.
3 changes: 3 additions & 0 deletions src/main/g8/src/main/scala/Stub.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class Stub {
// got any helpful boilerplate for your users?
}

0 comments on commit 31b7dc7

Please sign in to comment.