Skip to content

Commit

Permalink
chore: update domains
Browse files Browse the repository at this point in the history
  • Loading branch information
kashike committed Feb 23, 2023
1 parent 1d2631b commit 8cd898d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api/src/main/java/net/kyori/adventure/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Adventure: a serverside user interface library for Minecraft: Java Edition.
*
* <p>See the <a href="https://docs.adventure.kyori.net/index.html">documentation</a>
* <p>See the <a href="https://docs.advntr.dev/index.html">documentation</a>
* for usage and dependency information for this project and associated libraries.</p>
*/
package net.kyori.adventure;
2 changes: 1 addition & 1 deletion api/src/main/java/net/kyori/adventure/text/Component.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
*
* <p>Further information about Components, along with functional
* examples of how they can be used,
* <a href="https://docs.adventure.kyori.net/text.html">can be found on
* <a href="https://docs.advntr.dev/text.html">can be found on
* our documentation.</a></p>
*
* @see BlockNBTComponent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ final class LegacyFormattingDetected extends Nag {
private static final long serialVersionUID = -947793022628807411L;

LegacyFormattingDetected(final Component component) {
super("Legacy formatting codes have been detected in a component - this is unsupported behaviour. Please refer to the Adventure documentation (https://docs.adventure.kyori.net) for more information. Component: " + component);
super("Legacy formatting codes have been detected in a component - this is unsupported behaviour. Please refer to the Adventure documentation (https://docs.advntr.dev) for more information. Component: " + component);
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ description=A user-interface library for Minecraft: Java Edition.
org.gradle.parallel=true
systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict=true

javadocPublishRoot=https://jd.adventure.kyori.net/
javadocPublishRoot=https://jd.advntr.dev/
testJdks=8, 11, 17
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# adventure

![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/KyoriPowered/adventure/build.yml?branch=main/4) [![MIT License](https://img.shields.io/badge/license-MIT-blue)](license.txt) [![Maven Central](https://img.shields.io/maven-central/v/net.kyori/adventure-api?label=stable)](https://search.maven.org/search?q=g:net.kyori%20AND%20a:adventure*) ![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/net.kyori/adventure-api?label=dev&server=https%3A%2F%2Foss.sonatype.org) [![Javadoc](https://img.shields.io/badge/javadoc-all-green)](https://jd.adventure.kyori.net/)
![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/KyoriPowered/adventure/build.yml?branch=main/4) [![MIT License](https://img.shields.io/badge/license-MIT-blue)](license.txt) [![Maven Central](https://img.shields.io/maven-central/v/net.kyori/adventure-api?label=stable)](https://search.maven.org/search?q=g:net.kyori%20AND%20a:adventure*) ![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/net.kyori/adventure-api?label=dev&server=https%3A%2F%2Foss.sonatype.org) [![Javadoc](https://img.shields.io/badge/javadoc-all-green)](https://jd.advntr.dev/)

A serverside user interface library for *Minecraft: Java Edition*

See the [documentation](https://docs.adventure.kyori.net/) for usage and dependency information for this project and associated libraries.
See the [documentation](https://docs.advntr.dev/) for usage and dependency information for this project and associated libraries.

### Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public static void parseString(final String message, final boolean lenient, fina
|| nextChar == 'r'
|| (nextChar >= 'k' && nextChar <= 'o')) {
throw new ParsingExceptionImpl(
"Legacy formatting codes have been detected in a MiniMessage string - this is unsupported behaviour. Please refer to the Adventure documentation (https://docs.adventure.kyori.net) for more information.",
"Legacy formatting codes have been detected in a MiniMessage string - this is unsupported behaviour. Please refer to the Adventure documentation (https://docs.advntr.dev) for more information.",
message,
null,
true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
/**
* MiniMessage, a friendly text format for representing chat components.
*
* @see <a href="https://docs.adventure.kyori.net/minimessage/format.html">Format Documentation</a>
* @see <a href="https://docs.advntr.dev/minimessage/format.html">Format Documentation</a>
*/
package net.kyori.adventure.text.minimessage;

0 comments on commit 8cd898d

Please sign in to comment.