-
Notifications
You must be signed in to change notification settings - Fork 1
/
scala_arm.diff
51 lines (44 loc) · 1.67 KB
/
scala_arm.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
diff --git a/build.sbt b/build.sbt
index 7870073..bfe166a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -6,7 +6,9 @@ name := "scala-arm"
version := "1.1"
-scalaVersion := "2.9.1"
+scalaVersion := "2.10.0-virtualized-SNAPSHOT"
+
+resolvers += "Local Maven Repository" at Path.userHome.asURL + "/.m2/repository"
autoCompilerPlugins := true
@@ -35,20 +37,4 @@ publishMavenStyle := true
publishArtifact in Test := false
-//seq(org.clapper.sbt.lwm.LWM.lwmSettings: _*)
-
-//LWM.sources in LWM.Config <++= baseDirectory(d => (d / "src" / "site" ** "*.md").get)
-
-//LWM.targetDirectory in LWM.Config <<= target(_ / "site")
-
-seq(SitePlugin.site.settings:_*)
-
-//SiteKeys.siteMappings <<= (SiteKeys.siteMappings, LWM.translate in LWM.Config, LWM.targetDirectory in LWM.Config) map { (mappings, _, dir) =>
-// // TODO - less hacky solution!
-// mappings ++ (dir ** "*.html" x relativeTo(dir))
-//}
-
-seq(ghpages.settings:_*)
-
-GitKeys.gitRemoteRepo := "[email protected]:jsuereth/scala-arm.git"
diff --git a/project/plugins/project/Build.scala b/project/plugins/project/Build.scala
deleted file mode 100644
index 1d5fff6..0000000
--- a/project/plugins/project/Build.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-import sbt._
-object PluginDef extends Build {
- override def projects = Seq(root)
- lazy val root = Project("plugins", file(".")) dependsOn(ghpages)
- lazy val ghpages = uri("git://github.com/jsuereth/xsbt-ghpages-plugin.git#0.2")
- //lazy val lwm = uri("git://github.com/bmc/sbt-lwm.git#release-0.2.1")
- //lazy val posterous = uri("git://github.com/n8han/posterous-sbt.git#0.3.2")
- //lazy val helix = ProjectRef(file("/home/jsuereth/projects/personal/helix/"), "sbt-helix-plugin")
-}