@@ -24,9 +24,6 @@ vars: {
24
24
scala210-version: ${vars.scala210-bin-version}".6"
25
25
26
26
// propagate resolvers to the scripted tests
27
- sbt-commands: [ "set scriptedLaunchOpts ++= Seq(\"-Dsbt.override.build.repos=true\", (\"-Dsbt.repository.config=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/repositories\"), (\"-Dsbt.ivy.home=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/ivy2\"))",
28
- "set bintrayRelease in root := ()" ]
29
-
30
27
// if $SPACE_PREFIX is undefined, or "", then dbuild will compile
31
28
// all subprojects on top of each other. If it is anything else,
32
29
// each subproject's artifacts will end up in a dummy space, therefore
@@ -40,31 +37,37 @@ vars: {
40
37
set-version-suffix: "bin-"${TIMESTAMP}
41
38
extra.skip-missing-tests: true
42
39
extra.test-tasks: [ test ]
43
- // extra.test-tasks: [ test, scripted ]
40
+ // extra.test-tasks: [ test, scripted ] // scripted testing too complex in sbt/sbt for dbuild
41
+ extra.commands: [ "set scriptedLaunchOpts ++= Seq(\"-Dsbt.override.build.repos=true\", (\"-Dsbt.repository.config=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/repositories\"), (\"-Dsbt.ivy.home=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/ivy2\"))",
42
+ "set bintrayRelease in root := ()",
44
43
// restore sbt-launch to the standard publish task
45
- extra.commands: [ "project bundledLauncherProj","set publish := sbt.Classpaths.publishTask(publishConfiguration, deliver).value" ]
44
+ "project bundledLauncherProj","set publish := sbt.Classpaths.publishTask(publishConfiguration, deliver).value" ]
46
45
}
47
46
zinc: {
48
47
uri: "https://github.com/sbt/zinc.git#"${zinc}
49
48
set-version-suffix: "bin-"${TIMESTAMP}
49
+ extra.commands: [ "set scriptedLaunchOpts ++= Seq(\"-Dsbt.override.build.repos=true\", (\"-Dsbt.repository.config=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/repositories\"), (\"-Dsbt.ivy.home=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/ivy2\"))",
50
+ "set bintrayRelease in root := ()" ]
50
51
extra.test-tasks: [ test, scripted ]
51
52
extra.run-tests: false
52
53
}
53
54
io: {
54
55
uri: "https://github.com/sbt/io.git#"${io}
55
56
set-version-suffix: "bin-"${TIMESTAMP}
56
- extra.test-tasks: [ test, scripted ]
57
+ extra.test-tasks: [ test ] // there are no scripted tests in sbt/io
57
58
extra.skip-missing-tests: true
58
59
}
59
60
util: {
60
61
uri: "https://github.com/sbt/util.git#"${util}
61
62
set-version-suffix: "bin-"${TIMESTAMP}
62
- extra.test-tasks: [ test, scripted ]
63
+ extra.test-tasks: [ test ] // there are no scripted tests in sbt/util
63
64
extra.skip-missing-tests: true
64
65
}
65
66
lib: {
66
67
uri: "https://github.com/sbt/librarymanagement.git#"${librarymanagement}
67
68
set-version-suffix: "bin-"${TIMESTAMP}
69
+ extra.commands: [ "set scriptedLaunchOpts ++= Seq(\"-Dsbt.override.build.repos=true\", (\"-Dsbt.repository.config=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/repositories\"), (\"-Dsbt.ivy.home=\"+(baseDirectory.value.getAbsolutePath())+\"/.dbuild/ivy2\"))",
70
+ "set bintrayRelease in root := ()" ]
68
71
extra.test-tasks: [ test, scripted ]
69
72
extra.skip-missing-tests: true
70
73
}
0 commit comments