Skip to content

Commit

Permalink
Avoid animal-sniffer for Gradle 8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rnc committed Jan 21, 2025
1 parent bf4ad98 commit 08cf859
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ public static void setupJVM() throws IOException {
@Test
public void testOpenTelemetryJavaInstrumentation() throws IOException, URISyntaxException, GitAPIException {
assumeTrue(GradleVersion.current().compareTo(GradleVersion.version("8.8")) >= 0);
// Avoid problems with animal-sniffer in later versions.
assumeTrue(GradleVersion.current().compareTo(GradleVersion.version("8.12")) < 0);

final File opentelemetryProjectRoot = tempDir.newFolder("opentelemetry-java-instrumentation-project");

Expand Down

0 comments on commit 08cf859

Please sign in to comment.