Skip to content

Commit f4a477b

Browse files
committed
Update doc links to use Antora pages
1 parent c43b4d2 commit f4a477b

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ for the JUnit Platform using the Java Platform Module System.
121121
[ci-badge]:https://github.com/junit-team/junit-examples/workflows/Build%20all%20examples/badge.svg "CI build status"
122122
[ci-actions]: https://github.com/junit-team/junit-examples/actions
123123

124-
[guide-custom-engine]: https://docs.junit.org/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine"
124+
[guide-custom-engine]: https://docs.junit.org/current/advanced-topics/engines.html#custom "Plugging in Your Own Test Engine"

junit-jupiter-starter-ant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ tests using [Apache Ant](https://ant.apache.org/) 1.10.15 or higher.
66
This example project does not aim to demonstrate how to use the JUnit Jupiter APIs.
77

88
For detailed information on the JUnit Jupiter programming and extension models,
9-
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
9+
please consult the [User Guide](https://docs.junit.org).

junit-jupiter-starter-ant/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<javac destdir="build/test" classpathref="test.classpath" srcdir="src/test/java" includeantruntime="false"/>
3333
</target>
3434

35-
<!-- https://docs.junit.org/snapshot/user-guide/#running-tests-build-ant -->
35+
<!-- https://docs.junit.org/current/running-tests/build-support.html#ant -->
3636
<target name="test.junit.launcher" depends="compile">
3737
<junitlauncher haltOnFailure="true" printSummary="true">
3838
<classpath refid="test.classpath"/>
@@ -46,7 +46,7 @@
4646
</junitlauncher>
4747
</target>
4848

49-
<!-- https://docs.junit.org/current/user-guide/#running-tests-console-launcher -->
49+
<!-- https://docs.junit.org/current/running-tests/console-launcher.html -->
5050
<target name="test.console.launcher" depends="compile">
5151
<java classpathref="test.classpath" classname="org.junit.platform.console.ConsoleLauncher" fork="true" failonerror="true">
5252
<arg value="execute"/>

junit-migration-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ the JUnit Platform.
77

88
This example project does not aim to demonstrate how to use the JUnit Jupiter APIs.
99
For detailed information on the JUnit Jupiter programming and extension models,
10-
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
10+
please consult the [User Guide](https://docs.junit.org).
1111

1212
## Enabling the JUnit Platform
1313

junit-migration-maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ the JUnit Platform.
77

88
This example project does not aim to demonstrate how to use the JUnit Jupiter APIs.
99
For detailed information on the JUnit Jupiter programming and extension models,
10-
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
10+
please consult the [User Guide](https://docs.junit.org).
1111

1212
Please note that this project uses the [Maven Wrapper](https://github.com/takari/maven-wrapper).
1313
Thus, to ensure that the correct version of Maven is used, invoke `mvnw` instead of `mvn`.

junit-modular-world/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Invoke [java](https://openjdk.org/jeps/458)'s source launcher
77

88
This example project does not aim to demonstrate how to use the JUnit Framework APIs.
99
For detailed information on the JUnit Framework programming and extension models,
10-
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
10+
please consult the [User Guide](https://docs.junit.org).
1111

1212
## Source Layout
1313

junit-multiple-engines/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ using the JUnit Platform with various [TestEngine][guide-custom-engine] implemen
55

66
## Provided by junit.org
77

8-
* [JUnit Jupiter](https://docs.junit.org/current/user-guide)
9-
* [JUnit Vintage](https://docs.junit.org/current/user-guide)
10-
* [JUnit Platform Suite Engine](https://docs.junit.org/current/user-guide/#junit-platform-suite-engine)
8+
* [JUnit Jupiter](https://docs.junit.org/current/writing-tests/intro.html)
9+
* [JUnit Vintage](https://docs.junit.org/current/migrating-from-junit4.html)
10+
* [JUnit Platform Suite Engine](https://docs.junit.org/current/advanced-topics/junit-platform-suite-engine.html)
1111
* [TestNG](https://github.com/junit-team/testng-engine)
1212

1313
## 3rd-party test engines
@@ -24,4 +24,4 @@ See https://github.com/junit-team/junit-framework/wiki/Third-party-Extensions#ju
2424
for even more test engine implementations and feel free to add minimal working examples of other
2525
engines to this project and the wiki page.
2626

27-
[guide-custom-engine]: https://docs.junit.org/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine"
27+
[guide-custom-engine]: https://docs.junit.org/current/advanced-topics/engines.html#custom "Plugging in Your Own Test Engine"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
##
22
## Enable JUnit Platform Reporting
3-
## -> https://docs.junit.org/current/user-guide/#junit-platform-reporting
3+
## -> https://docs.junit.org/current/advanced-topics/junit-platform-reporting.html
44
##
55
# junit.platform.reporting.output.dir=out/junit-{uniqueNumber}
66
# junit.platform.reporting.open.xml.enabled=true

0 commit comments

Comments
 (0)