Skip to content

Commit

Permalink
exclude Nailgun files from the header check
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Nov 15, 2017
1 parent aca1c14 commit 03d7f08
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Expand Up @@ -325,7 +325,11 @@ lazy val commandProj = (project in file("main-command"))
exclude[ReversedMissingMethodProblem]("sbt.internal.CommandChannel.*"),
// Added an overload to reboot. The overload is private[sbt].
exclude[ReversedMissingMethodProblem]("sbt.StateOps.reboot"),
)
),
unmanagedSources in (Compile, headerCreate) := {
val old = (unmanagedSources in (Compile, headerCreate)).value
old filterNot { x => (x.getName startsWith "NG") || (x.getName == "ReferenceCountedFileDescriptor.java") }
},
)
.configure(
addSbtIO,
Expand Down

0 comments on commit 03d7f08

Please sign in to comment.