Skip to content

Commit

Permalink
forgot javadocs and sources
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Sloan committed Nov 29, 2016
1 parent ca26cbc commit eeccb32
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions metrics/datadog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,20 @@ ext {
pomDesc = 'Datadog Metrics Reporter for S3 Connectors for Kafka Connect'
}



task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from tasks.javadoc.destinationDir
}

task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}

artifacts {
archives javadocJar, sourcesJar
}

apply from: '../../upload.gradle'

0 comments on commit eeccb32

Please sign in to comment.