Skip to content

Commit

Permalink
[build] Spotless copyright check excludes scrabble + annotations (rea…
Browse files Browse the repository at this point in the history
…ctor#2732)

 - scrabble classes copyright notice was not originally completely clean
 and will need to be improved separately
 - NonNull/NonNullApi/Nullable annotations have been taken from Spring
 with original copyright notice
  • Loading branch information
simonbasle committed Jul 2, 2021
1 parent 208d07b commit 402e5d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ spotless {
}
java {
target '**/*.java'
targetExclude '**/java8stubs/**/*', '**/java9stubs/**/*'
targetExclude '**/java8stubs/**/*', '**/java9stubs/**/*', '**/scrabble/**/*',
'reactor-core/src/main/java/reactor/util/annotation/NonNull.java',
'reactor-core/src/main/java/reactor/util/annotation/NonNullApi.java',
'reactor-core/src/main/java/reactor/util/annotation/Nullable.java'
licenseHeaderFile('codequality/spotless/licenseSlashstarStyle.txt')
}
}
Expand Down

0 comments on commit 402e5d8

Please sign in to comment.