Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Exclude test classes from published jars (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurishkuro authored Sep 9, 2016
1 parent 9e3863f commit 1a7d40f
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion jaeger-context/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ sourceSets {

jar {
from sourceSets.main.output
from sourceSets.test.output
manifest {
attributes('Implementation-Title': 'jaeger-context', 'Implementation-Version': project.version)
}
Expand Down
1 change: 0 additions & 1 deletion jaeger-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ sourceSets {

jar {
from sourceSets.main.output
from sourceSets.test.output
manifest {
attributes('Implementation-Title': 'jaeger-core', 'Implementation-Version': project.version)
}
Expand Down
1 change: 0 additions & 1 deletion jaeger-dropwizard/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ sourceSets {

jar {
from sourceSets.main.output
from sourceSets.test.output
manifest {
attributes('Implementation-Title': 'jaeger-dropwizard', 'Implementation-Version': project.version)
}
Expand Down
1 change: 0 additions & 1 deletion jaeger-jaxrs2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ sourceSets {

jar {
from sourceSets.main.output
from sourceSets.test.output
manifest {
attributes('Implementation-Title': 'jaeger-jaxrs2', 'Implementation-Version': project.version)
}
Expand Down
1 change: 0 additions & 1 deletion jaeger-zipkin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ sourceSets {

jar {
from sourceSets.main.output
from sourceSets.test.output
manifest {
attributes('Implementation-Title': 'jaeger-zipkin', 'Implementation-Version': project.version)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public final class ZipkinSender implements Sender {
/**
* @param endpoint The POST URL for zipkin's <a href="http://zipkin.io/zipkin-api/#/">v1 api</a>, usually
* "http://zipkinhost:9411/api/v1/spans"
* @return new sender
*/
public static ZipkinSender create(String endpoint) {
return new ZipkinSender(URLConnectionSender.create(endpoint));
Expand All @@ -66,6 +67,7 @@ public static ZipkinSender create(String endpoint) {
* }</pre>
*
* @param delegate indicates an alternate sender library than {@link URLConnectionSender}
* @return new sender
*/
public static ZipkinSender create(zipkin.reporter.Sender delegate) {
return new ZipkinSender(delegate);
Expand Down

0 comments on commit 1a7d40f

Please sign in to comment.