ctubbsii commented on pull request #2259: URL: https://github.com/apache/accumulo/pull/2259#issuecomment-931573493
> It should, but it would require someone to get all the dependencies and put them there. Since the tracer module (and the shaded jar) have been removed, it's not as easy to do anymore. Here's an example minimal POM to collect specified dependencies and transitive into a folder: ```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.accumulo.tracing</groupId> <artifactId>opentelemetry-autoconf-deps</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>pom</packaging> <dependencyManagement> <dependencies> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-bom</artifactId> <version>1.5.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-exporter-zipkin</artifactId> </dependency> </dependencies> <build> <defaultGoal>dependency:copy-dependencies</defaultGoal> </build> </project> ``` Download deps to `target/dependecy` with `mvn` (use `mvn clean` to clear). -- 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]
