Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Commit bdd757f

Browse files
committed
Merge pull request #161 from xuwei-k/root-no-publish
disable publish settings of root project
2 parents 05c663a + 761ed93 commit bdd757f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

project/Build.scala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ object ProjectBuild extends Build {
1010
lazy val root = Project(
1111
id = "db-async-base",
1212
base = file("."),
13-
settings = Configuration.baseSettings,
13+
settings = Configuration.baseSettings ++ Seq(
14+
publish := (),
15+
publishLocal := (),
16+
publishArtifact := false
17+
),
1418
aggregate = Seq(common, postgresql, mysql)
1519
)
1620

0 commit comments

Comments
 (0)