Skip to content

Commit 4e55e43

Browse files
committed
Update links to use junit5 logo
1 parent 20b1845 commit 4e55e43

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="https://junit.org/junit5/assets/img/junit5-logo.png" align="right" width="100">JUnit
1+
# <img src="https://junit.org/assets/img/junit5-logo.png" align="right" width="100">JUnit
22

33
This repository is the home of JUnit Platform, Jupiter, and Vintage.
44

documentation/documentation.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ tasks {
476476
}
477477
from(inputDir) {
478478
filesMatching("**/*.html") {
479-
val favicon = "<link rel=\"icon\" type=\"image/png\" href=\"https://junit.org/junit5/assets/img/junit5-logo.png\">"
479+
val favicon = "<link rel=\"icon\" type=\"image/png\" href=\"https://junit.org/assets/img/junit5-logo.png\">"
480480
filter { line ->
481481
var result = if (line.startsWith("<head>")) line.replace("<head>", "<head>$favicon") else line
482482
externalModulesWithoutModularJavadoc.forEach { (moduleName, baseUrl) ->

documentation/src/docs/asciidoc/docinfos/docinfo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<link rel="icon" type="image/png" href="https://junit.org/junit5/assets/img/junit5-logo.png" />
1+
<link rel="icon" type="image/png" href="https://junit.org/assets/img/junit5-logo.png" />
22
<style>
33
/* Tocbot dynamic TOC, works with tocbot 3.0.2 */
44
/* Source: https://github.com/asciidoctor/asciidoctor/issues/699#issuecomment-321066006 */

gradle/plugins/common/src/main/kotlin/junitbuild.publishing-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ publishing {
5252
name.set(provider {
5353
project.description ?: "${project.group}:${project.name}"
5454
})
55-
url = "https://junit.org/junit5/"
55+
url = "https://junit.org/"
5656
scm {
5757
connection = "scm:git:git://github.com/junit-team/junit5.git"
5858
developerConnection = "scm:git:git://github.com/junit-team/junit5.git"

platform-tests/src/test/java/org/junit/platform/commons/support/conversion/ConversionSupportTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ void convertsStringToURI() {
260260

261261
@Test
262262
void convertsStringToURL() throws Exception {
263-
assertConverts("https://junit.org/junit5", URL.class, URI.create("https://junit.org/junit5").toURL());
263+
assertConverts("https://junit.org", URL.class, URI.create("https://junit.org").toURL());
264264
}
265265

266266
// --- java.time -----------------------------------------------------------

0 commit comments

Comments
 (0)