Skip to content

Commit

Permalink
Clean up some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skuzzle committed Jan 18, 2023
1 parent 67aef8b commit 90497cd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion snapshot-tests-directory-params/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
<artifactId>apiguardian-api</artifactId>
</dependency>

<!-- Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand All @@ -60,6 +59,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>snapshot-tests-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand Down
4 changes: 4 additions & 0 deletions snapshot-tests-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
<groupId>${project.groupId}</groupId>
<artifactId>snapshot-tests-core</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>snapshot-tests-common</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>snapshot-tests-test-common</artifactId>
Expand Down
11 changes: 8 additions & 3 deletions snapshot-tests-test-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,20 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>snapshot-tests-common</artifactId>
<groupId>org.apiguardian</groupId>
<artifactId>apiguardian-api</artifactId>
<scope>compile</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-testkit</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import java.util.List;
import java.util.function.Consumer;

import org.apiguardian.api.API;
import org.assertj.core.api.AbstractThrowableAssert;
import org.assertj.core.api.Assertions;
import org.assertj.core.api.Assumptions;
Expand All @@ -14,7 +15,8 @@
import org.junit.platform.testkit.engine.EngineTestKit;
import org.junit.platform.testkit.engine.Execution;

public class MetaTest {
@API(status = API.Status.INTERNAL, since = "1.8.0")
public final class MetaTest {

private static final String JUNIT4_ENGINE = "junit-vintage";
private static final String JUNIT5_ENGINE = "junit-jupiter";
Expand Down

0 comments on commit 90497cd

Please sign in to comment.