forked from lihaoyi/hands-on-scala-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
108 lines (85 loc) · 3.38 KB
/
build.sbt
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import org.eclipse.jgit.api.CreateBranchCommand.SetupUpstreamMode
import org.eclipse.jgit.api.Git
import org.eclipse.jgit.merge.MergeStrategy
import org.eclipse.jgit.transport.{UsernamePasswordCredentialsProvider, RefSpec}
val cloneRepos = taskKey[Unit]("Clone stuff from github")
val sharedSettings = Seq(
scalaVersion := "2.11.4",
libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.1.2" % "provided",
addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.1.2"),
autoCompilerPlugins := true
)
lazy val book = Project(
id = "book",
base = file("book")
).settings(sharedSettings ++ scalatex.SbtPlugin.projectSettings:_*).settings(
libraryDependencies ++= Seq(
"com.lihaoyi" %% "scalatex-site" % "0.2.1",
"com.lihaoyi" %% "scalatags" % "0.5.1",
"com.lihaoyi" %% "upickle" % "0.2.7",
"com.lihaoyi" %% "ammonite-ops" % "0.2.4"
),
(resources in Compile) += (fullOptJS in (demos, Compile)).value.data,
(unmanagedResourceDirectories in Compile) ++=
(unmanagedResourceDirectories in (demos, Compile)).value,
cloneRepos := {
val localPath = target.value / "clones"
if (!localPath.isDirectory){
val paths = Seq(
"scala-js" -> "scala-js",
"lihaoyi" -> "workbench-example-app"
)
localPath.delete()
for ((user, repo) <- paths){
println(s"Cloning $repo...")
Git.cloneRepository()
.setURI(s"https://github.com/$user/$repo")
.setDirectory(localPath / repo)
.call()
}
println("Done Cloning")
}else{
println("Already Cloned")
}
},
(run in Compile) <<= (run in Compile).dependsOn(cloneRepos),
initialize := {
System.setProperty("clone.root", target.value.getAbsolutePath + "/clones")
System.setProperty("output.root", target.value.getAbsolutePath + "/output")
},
publish := {
// If you want to publish the heroku app, push the contents of
// examples/crossBuilds/clientserver to https://git.heroku.com/hands-on-scala-js.git
// May aswell do it manually because it's a slow process and the
// code doesn't change much
val outputRoot = target.value.getAbsolutePath + "/output"
val repo = Git.init().setDirectory(new File(outputRoot)).call()
val remoteUrl = "https://github.com/lihaoyi/hands-on-scala-js"
val creds = new UsernamePasswordCredentialsProvider(
System.console.readLine("username>"),
System.console.readPassword("password>")
)
repo.add()
.addFilepattern(".")
.call()
repo.commit()
.setAll(true)
.setMessage(".")
.call()
repo.push()
.setRemote(remoteUrl)
.setCredentialsProvider(creds)
.setRefSpecs(new RefSpec("master:gh-pages"))
.setForce(true)
.call()
streams.value.log("Pushing to Github Pages complete!")
}
)
lazy val demos = project.in(file("examples/demos"))
lazy val simple = project.in(file("examples/crossBuilds/simple"))
lazy val clientserver = project.in(file("examples/crossBuilds/clientserver"))
lazy val client = ProjectRef(file("examples/crossBuilds/clientserver"), "client")
lazy val server = ProjectRef(file("examples/crossBuilds/clientserver"), "server")
lazy val clientserver2 = project.in(file("examples/crossBuilds/clientserver2"))
lazy val client2 = ProjectRef(file("examples/crossBuilds/clientserver2"), "client")
lazy val server2 = ProjectRef(file("examples/crossBuilds/clientserver2"), "server")