mirror of https://github.com/sbt/sbt.git
Disable travis notification
This commit is contained in:
parent
a7a5c3eb2b
commit
e9b2ac99d7
|
|
@ -37,10 +37,10 @@ env:
|
|||
# - SCRIPTED_TEST="mavenResolverPluginTest:scripted dependency-management/*1of2 project/transitive-plugins"
|
||||
# - SCRIPTED_TEST="mavenResolverPluginTest:scripted dependency-management/*2of2"
|
||||
|
||||
notifications:
|
||||
email:
|
||||
- eugene.yokota@typesafe.com
|
||||
- joshua.suereth@typesafe.com
|
||||
# notifications:
|
||||
# email:
|
||||
# - eugene.yokota@typesafe.com
|
||||
# - joshua.suereth@typesafe.com
|
||||
|
||||
script:
|
||||
- sbt -J-XX:ReservedCodeCacheSize=128m "$SCRIPTED_TEST"
|
||||
|
|
|
|||
|
|
@ -121,9 +121,9 @@ private[compiler] class NewComponentCompiler(compiler: RawCompiler, manager: Com
|
|||
update(getModule(id))(_.getName == jarName) getOrElse (throw new InvalidComponent(s"Couldn't retrieve default sources: file '$jarName' in module '$id'"))
|
||||
|
||||
case version +: rest =>
|
||||
log.debug(s"Fetching version-specific sources: ${id}_$version")
|
||||
val moduleName = s"${id}_$version"
|
||||
val jarName = s"${srcID}_$version-$sbtVersion.jar"
|
||||
log.debug(s"Fetching version-specific sources: file '$jarName' in module '$moduleName'")
|
||||
update(getModule(moduleName))(_.getName == jarName) getOrElse interfaceSources(rest)
|
||||
}
|
||||
IO.withTemporaryDirectory { binaryDirectory =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue