project/SbtInternalAccess.scala (14 lines of code) (raw):
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, which was derived from Akka.
*/
/*
* Copyright (C) 2017-2020 Lightbend Inc. <https://www.lightbend.com>
*/
package sbt {
package object access {
type Aggregation = sbt.internal.Aggregation
val Aggregation = sbt.internal.Aggregation
private val showRunMethod = {
val method = Class.forName("sbt.internal.Aggregation$").getDeclaredMethods.find(_.getName == "showRun").get
method.setAccessible(true)
method
}
def AggregationShowRun[T](complete: sbt.internal.Aggregation.Complete[T],
show: sbt.internal.Aggregation.ShowConfig)(
implicit display: Show[ScopedKey[_]]): Unit = showRunMethod.invoke(Aggregation, complete, show, display)
}
}