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

Exclude test classes from published jars #49

Merged
merged 1 commit into from
Sep 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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