Add `@sbtUnchecked` to sbt 0.13.16

Fixes #3337
This commit is contained in:
Dale Wijnand 2017-07-19 13:35:27 +01:00
parent 948ff29829
commit 3cd2a979ca
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package sbt
import scala.annotation.Annotation
/** An annotation to designate that the annotated entity
* should not be considered for additional sbt compiler checks.
* These checks ensure that the DSL is predictable and prevents
* users from doing dangerous things at the cost of a stricter
* code structure.
*
* @since 0.13.16
*/
class sbtUnchecked extends Annotation