We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6deec07 commit 3a2b104Copy full SHA for 3a2b104
build.sbt
@@ -111,6 +111,12 @@ lazy val jobServerTestJarSettings = Seq(
111
exportJars := true // use the jar instead of target/classes
112
)
113
114
+lazy val noPublishSettings = Seq(
115
+ publishTo := Some(Resolver.file("Unused repo", file("target/unusedrepo"))),
116
+ publishArtifact := false,
117
+ publish := {}
118
+)
119
+
120
lazy val dockerSettings = Seq(
121
// Make the docker task depend on the assembly task, which generates a fat JAR file
122
docker <<= (docker dependsOn (assembly in jobServerExtras)),
0 commit comments