-
-
Notifications
You must be signed in to change notification settings - Fork 225
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
Add lin-bus dependency #2004
Add lin-bus dependency #2004
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ applyShadowConfiguration() | |
repositories { | ||
maven { | ||
name = "PaperMC" | ||
url = uri("https://repo.papermc.io/repository/maven-public/") | ||
url = uri("https://papermc.io/repo/repository/maven-public/") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as last comment |
||
} | ||
maven { | ||
name = "EngineHub" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,19 @@ dependencies { | |
implementation("com.google.guava:guava") | ||
implementation("com.google.code.gson:gson") | ||
|
||
implementation(libs.jchronic) { | ||
exclude(group = "junit", module = "junit") | ||
} | ||
implementation("com.thoughtworks.paranamer:paranamer:2.6") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Paranamer is built in to Java 8 onwards, we don't need to add it, hence we removed it years ago. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will be fixed in the next commit. |
||
implementation(libs.jlibnoise) | ||
api(platform("org.enginehub.lin-bus:lin-bus-bom:0.1.0-SNAPSHOT")) | ||
api("org.enginehub.lin-bus:lin-bus-tree:0.1.0-SNAPSHOT") { | ||
exclude(group = "org.jetbrains", module = "annotations") | ||
} | ||
api("org.enginehub.lin-bus.format:lin-bus-format-snbt:0.1.0-SNAPSHOT") { | ||
exclude(group = "org.jetbrains", module = "annotations") | ||
} | ||
|
||
// Platform expectations | ||
implementation("org.yaml:snakeyaml") | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this changed back? On 20.05.2022 PaperMC announced the change to the new URLs. After the announcement, the URL got changed here by a pull request coming from me (#1756)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for that info. I wasn't aware. Those changes came from upstream. I'll revert them.