Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix kotlin unit tests #513

Merged
merged 7 commits into from
Nov 1, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Be clearer that we are running JUnit 5 tests
  • Loading branch information
chrisgresty committed Nov 1, 2019
commit 1845821c284a4701cb3556599fce960ff039be54
6 changes: 4 additions & 2 deletions components/proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,16 +217,18 @@
</goals>
<configuration>
<junitArtifactName>none:none</junitArtifactName>
<junitPlatformArtifactName>none:none</junitPlatformArtifactName>
</configuration>
</execution>
<!-- Define a JUnit execution (runs JUnit and KotlinTest tests) -->
<!-- Define a JUnit5 execution (runs JUnit5 and KotlinTest tests) -->
<execution>
<id>junit-tests</id>
<id>junit5-tests</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<junitArtifactName>none:none</junitArtifactName>
<testNGArtifactName>none:none</testNGArtifactName>
</configuration>
</execution>
Expand Down