Skip to content

Commit fe508b1

Browse files
committed
Started infrastucture for aggregated compilation
1 parent 3bfb65d commit fe508b1

File tree

10 files changed

+55
-0
lines changed

10 files changed

+55
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.class
22
*.log
3+
project/target
4+
target

.gitmodules

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[submodule "delphi-webapi"]
2+
path = delphi-webapi
3+
url = https://github.com/delphi-hub/delphi-webapi
4+
[submodule "delphi-webapp"]
5+
path = delphi-webapp
6+
url = https://github.com/delphi-hub/delphi-webapp
7+
[submodule "delphi-cli"]
8+
path = delphi-cli
9+
url = https://github.com/delphi-hub/delphi-cli
10+
[submodule "delphi-crawler"]
11+
path = delphi-crawler
12+
url = https://github.com/delphi-hub/delphi-crawler
13+
[submodule "delphi-management"]
14+
path = delphi-management
15+
url = https://github.com/delphi-hub/delphi-management

build.sbt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name := "delphi"
2+
version := "1.0.0-SNAPSHOT"
3+
scalaVersion := "2.12.4"
4+
5+
6+
7+
lazy val root = (project in file("."))
8+
.aggregate(cli, crawler, management, webapi, webapp)
9+
10+
11+
lazy val cli = Project(
12+
id = "cli",
13+
base = file("delphi-cli"))
14+
15+
lazy val crawler = Project(
16+
id = "crawler",
17+
base = file("delphi-crawler"))
18+
19+
lazy val management = Project(
20+
id = "management",
21+
base = file("delphi-management"))
22+
23+
lazy val webapp = Project(
24+
id = "webapp",
25+
base = file("delphi-webapp"))
26+
27+
lazy val webapi = Project(
28+
id = "webapi",
29+
base = file("delphi-webapi"))

delphi-cli

Submodule delphi-cli added at 6586a0c

delphi-crawler

Submodule delphi-crawler added at 814f915

delphi-management

Submodule delphi-management added at 3585ef4

delphi-webapi

Submodule delphi-webapi added at 206b3d6

delphi-webapp

Submodule delphi-webapp added at dda9fe9

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.1.1

project/plugins.sbt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
2+
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.2")
3+
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.10")

0 commit comments

Comments
 (0)