@@ -299,7 +299,6 @@ val disablePublishing = Seq[Setting[_]](
299
299
// The above is enough for Maven repos but it doesn't prevent publishing of ivy.xml files
300
300
publish := {},
301
301
publishLocal := {},
302
- whitesourceIgnore := true
303
302
)
304
303
305
304
lazy val setJarLocation : Setting [_] =
@@ -429,10 +428,8 @@ lazy val compiler = configureAsSubproject(project)
429
428
name := " scala-compiler" ,
430
429
description := " Scala Compiler" ,
431
430
libraryDependencies ++= Seq (antDep, asmDep),
432
- // These are only needed for the POM. (And, note that the jansi dependency is a fiction
433
- // for WhiteSource purposes; the JLine JAR contains a shaded jansi, but WhiteSource
434
- // won't know about that unless we tell it.)
435
- libraryDependencies ++= Seq (scalaXmlDep, jlineDep % " optional" , jansiDep % " optional" ),
431
+ // These are only needed for the POM.
432
+ libraryDependencies ++= Seq (scalaXmlDep, jlineDep % " optional" ),
436
433
buildCharacterPropertiesFile := (Compile / resourceManaged).value / " scala-buildcharacter.properties" ,
437
434
(Compile / resourceGenerators) += generateBuildCharacterPropertiesFile.map(file => Seq (file)).taskValue,
438
435
// this a way to make sure that classes from interactive and scaladoc projects
@@ -1334,11 +1331,6 @@ def findJar(files: Seq[Attributed[File]], dep: ModuleID): Option[Attributed[File
1334
1331
files.find(_.get(moduleID.key).map(extract _) == Some (extract(dep)))
1335
1332
}
1336
1333
1337
- // WhiteSource
1338
- whitesourceProduct := " Lightbend Reactive Platform"
1339
- whitesourceAggregateProjectName := " scala-2.12-stable"
1340
- whitesourceIgnoredScopes := Vector (" test" , " scala-tool" )
1341
-
1342
1334
Global / excludeLintKeys := (Global / excludeLintKeys).value ++ Set (scalaSource, javaSource, resourceDirectory)
1343
1335
1344
1336
{
0 commit comments