cbornet commented on code in PR #101:
URL:
https://github.com/apache/pulsar-client-reactive/pull/101#discussion_r1043118250
##########
build.gradle:
##########
@@ -21,4 +21,43 @@ plugins {
allprojects {
group = 'org.apache.pulsar'
apply plugin: 'io.spring.javaformat'
+ apply plugin: 'org.nosphere.apache.rat'
+
+ repositories {
+ mavenCentral()
+ }
+
+ tasks.named('rat') {
+ inputDir = projectDir
+ excludes = ['.asf.yaml', // ASF metadata for github integration
excluded from src zip
+ '**/.gradle/**', '**/wrapper/**',
'gradlew*', // gradle wrapper files excluded from src zip
+ 'gradle.properties', // artifactory
release plugin removes header when bumping version
+ '**/build/**', '**/target/**',
'licenses/**', 'notices/**',
+ '**/META-INF/services/*',
+ 'out/**', '*.ipr', '**/*.iml', '*.iws',
'.idea/**', // Intellij files
+ '.classpath', '.project',
'.settings/**', 'bin/**', // Eclipse files
+ 'CONTRIBUTING.adoc', 'README.adoc',
Review Comment:
Pulsar core has license headers for these files
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]