private def isApacheCopyrighted()

in project/CopyrightHeader.scala [113:118]


  private def isApacheCopyrighted(text: String): Boolean = {
    val lower = text.toLowerCase
    lower.contains("licensed to the apache software foundation (asf)") ||
    lower.contains("www.apache.org/licenses/license-2.0") ||
    text.contains("Apache-2.0")
  }