forked from PaperMC/Paperclip
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7c8b87
commit 97d6375
Showing
12 changed files
with
34 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ subprojects { | |
} | ||
} | ||
|
||
val mainClass = "io.papermc.paperclip.Main" | ||
val mainClass = "cn.dreeam.leaper.Main" | ||
|
||
tasks.jar { | ||
val java6Jar = project(":java6").tasks.named("jar") | ||
|
@@ -66,10 +66,10 @@ publishing { | |
withoutBuildIdentifier() | ||
|
||
pom { | ||
val repoPath = "PaperMC/Paperclip" | ||
val repoPath = "Winds-Studio/QuantumLeaper" | ||
val repoUrl = "https://github.com/$repoPath" | ||
|
||
name.set("Paperclip") | ||
name.set("QuantumLeaper") | ||
description.set(project.description) | ||
url.set(repoUrl) | ||
packaging = "jar" | ||
|
@@ -94,6 +94,12 @@ publishing { | |
email.set("[email protected]") | ||
url.set("https://github.com/DemonWav") | ||
} | ||
developer { | ||
id.set("Dreeam-qwq") | ||
name.set("Dreeam") | ||
email.set("[email protected]") | ||
url.set("https://github.com/Dreeam-qwq") | ||
} | ||
} | ||
|
||
scm { | ||
|
@@ -105,15 +111,11 @@ publishing { | |
} | ||
|
||
repositories { | ||
val url = if (isSnapshot) { | ||
"https://repo.papermc.io/repository/maven-snapshots/" | ||
} else { | ||
"https://repo.papermc.io/repository/maven-releases/" | ||
} | ||
val url = "https://maven.nostal.ink/" | ||
|
||
maven(url) { | ||
credentials(PasswordCredentials::class) | ||
name = "paper" | ||
name = "quantumleaper" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
group = io.papermc | ||
version = 3.0.4-SNAPSHOT | ||
group = cn.dreeam | ||
version = 1.0.0-SNAPSHOT | ||
description = Launcher for the Paper Minecraft server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...io/papermc/paperclip/DownloadContext.java → ...ava/cn/dreeam/leaper/DownloadContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../java/io/papermc/paperclip/FileEntry.java → ...main/java/cn/dreeam/leaper/FileEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../main/java/io/papermc/paperclip/Util.java → .../src/main/java/cn/dreeam/leaper/Util.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.papermc.paperclip; | ||
package cn.dreeam.leaper; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters