Skip to content

Commit b80868f

Browse files
authored
feat: rollback breaking changes (#17)
Sorry about the breaking change again, the change is reverted. You can use 1.4+ if you used 1.2.4, or go to 2.0+ if you used 1.3.1.
1 parent 9ef8e55 commit b80868f

26 files changed

Lines changed: 41 additions & 128 deletions

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ An intelligent Gradle plugin used to develop plugins for Spigot, Bungeecord and
2525
- [The Spigot plugin](docs/spigot_plugin.md)
2626
- [The Bungeecord plugin](docs/bungeecord_plugin.md)
2727
- [The Nukkit plugin](docs/nukkit_plugin.md)
28-
- [Sample](https://github.com/EntryPointKR/SpigradleSample)
28+
- [Sample](https://github.com/spigradle/spigradle-sample)
2929

3030
## Plugins
3131

@@ -37,7 +37,7 @@ An intelligent Gradle plugin used to develop plugins for Spigot, Bungeecord and
3737

3838
[Documentation](docs/spigot_plugin.md)
3939

40-
[Demo](https://github.com/EntryPointKR/SpigradleSample/tree/master/spigot)
40+
[Demo](https://github.com/spigradle/spigradle-sample/tree/master/spigot)
4141

4242
Groovy DSL
4343

@@ -100,7 +100,7 @@ apply(plugin = "kr.entree.spigradle")
100100

101101
[Documentation](docs/spigot_plugin.md)
102102

103-
[Demo](https://github.com/EntryPointKR/SpigradleSample/tree/master/bungeecord)
103+
[Demo](https://github.com/spigradle/spigradle-sample/tree/master/bungeecord)
104104

105105
Groovy DSL
106106

@@ -163,7 +163,7 @@ apply(plugin = "kr.entree.spigradle.bungee")
163163

164164
[Documentation](docs/nukkit_plugin.md)
165165

166-
[Demo](https://github.com/EntryPointKR/SpigradleSample/tree/master/nukkit)
166+
[Demo](https://github.com/spigradle/spigradle-sample/tree/master/nukkit)
167167

168168
Groovy DSL
169169

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ gradlePlugin {
3535
}
3636

3737
repositories {
38-
mavenCentral()
3938
jcenter()
4039
gradlePluginPortal()
4140
maven { setUrl("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") }
@@ -52,6 +51,7 @@ dependencies {
5251
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jacksonVersion")
5352
implementation("org.ow2.asm:asm:8.0.1")
5453
implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:0.7")
54+
implementation("kr.entree:spigradle-annotations:1.2.0")
5555
kapt("com.google.auto.service:auto-service:1.0-rc7")
5656
compileOnly("org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT")
5757
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.2")

buildSrc/spigradle-build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ plugins {
55

66
repositories {
77
jcenter()
8-
mavenCentral()
98
gradlePluginPortal()
109
}
1110

buildSrc/src/main/kotlin/spigradle-docs.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tasks {
1313
jdkVersion = 8
1414
sourceLink {
1515
path = "src/main/kotlin"
16-
url = "https://github.com/EntryPointKR/Spigradle/tree/master/src/main/kotlin"
16+
url = "https://github.com/spigradle/spigradle/tree/master/src/main/kotlin"
1717
lineSuffix = "#L"
1818
}
1919
externalDocumentationLink {

buildSrc/src/main/kotlin/spigradle-publish.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
`maven-publish`
1313
}
1414

15-
val spigradleVcsUrl = "https://github.com/EntryPointKR/Spigradle.git"
15+
val spigradleVcsUrl = "https://github.com/spigradle/spigradle.git"
1616

1717
bintray {
1818
user = findProperty("bintray.publish.user")?.toString()
@@ -23,9 +23,9 @@ bintray {
2323
repo = "Spigradle"
2424
name = project.name
2525
desc = project.description
26-
websiteUrl = "https://github.com/EntryPointKR/Spigradle"
27-
githubRepo = "https://github.com/EntryPointKR/Spigradle"
28-
issueTrackerUrl = "https://github.com/EntryPointKR/Spigradle/issues"
26+
websiteUrl = "https://github.com/spigradle/spigradle"
27+
githubRepo = "https://github.com/spigradle/spigradle"
28+
issueTrackerUrl = "https://github.com/spigradle/spigradle/issues"
2929
setLicenses("Apache-2.0")
3030
vcsUrl = spigradleVcsUrl
3131
}
@@ -70,7 +70,7 @@ publishing {
7070
}
7171

7272
pluginBundle {
73-
website = "https://github.com/EntryPointKR/Spigradle"
73+
website = "https://github.com/spigradle/spigradle"
7474
vcsUrl = spigradleVcsUrl
7575
tags = listOf("minecraft", "paper", "spigot", "bukkit", "bungeecord", "nukkit", "nukkitX")
7676
fun formatDesc(name: String) = "An intelligent Gradle plugin for developing $name plugin."

docs/bungeecord_plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ gradlew wrapper --gradle-version 6.4.1 --distribution-type all
4646

4747
[comment]: <> (!! Do not edit this file but 'docs/templates' or 'docs/root-templates', See [CONTRIBUTING.md] !!)
4848

49-
[Full Example Here](https://github.com/EntryPointKR/SpigradleSample/tree/master/bungeecord)
49+
[Full Example Here](https://github.com/spigradle/spigradle-sample/tree/master/bungeecord)
5050

5151
Groovy DSL
5252

docs/nukkit_plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ gradlew wrapper --gradle-version 6.4.1 --distribution-type all
4646

4747
[comment]: <> (!! Do not edit this file but 'docs/templates' or 'docs/root-templates', See [CONTRIBUTING.md] !!)
4848

49-
[Full Example Here](https://github.com/EntryPointKR/SpigradleSample/tree/master/nukkit)
49+
[Full Example Here](https://github.com/spigradle/spigradle-sample/tree/master/nukkit)
5050

5151
Groovy DSL
5252

docs/root-templates/template_README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ An intelligent Gradle plugin used to develop plugins for Spigot, Bungeecord and
2121
- [The Spigot plugin](docs/spigot_plugin.md)
2222
- [The Bungeecord plugin](docs/bungeecord_plugin.md)
2323
- [The Nukkit plugin](docs/nukkit_plugin.md)
24-
- [Sample](https://github.com/EntryPointKR/SpigradleSample)
24+
- [Sample](https://github.com/spigradle/spigradle-sample)
2525

2626
## Plugins
2727

2828
### Spigot
2929

3030
[Documentation](docs/spigot_plugin.md)
3131

32-
[Demo](https://github.com/EntryPointKR/SpigradleSample/tree/master/spigot)
32+
[Demo](https://github.com/spigradle/spigradle-sample/tree/master/spigot)
3333

3434
Groovy DSL
3535

@@ -90,7 +90,7 @@ apply(plugin = "kr.entree.spigradle")
9090

9191
[Documentation](docs/spigot_plugin.md)
9292

93-
[Demo](https://github.com/EntryPointKR/SpigradleSample/tree/master/bungeecord)
93+
[Demo](https://github.com/spigradle/spigradle-sample/tree/master/bungeecord)
9494

9595
Groovy DSL
9696

@@ -151,7 +151,7 @@ apply(plugin = "kr.entree.spigradle.bungee")
151151

152152
[Documentation](docs/nukkit_plugin.md)
153153

154-
[Demo](https://github.com/EntryPointKR/SpigradleSample/tree/master/nukkit)
154+
[Demo](https://github.com/spigradle/spigradle-sample/tree/master/nukkit)
155155

156156
Groovy DSL
157157

docs/spigot_plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ gradlew wrapper --gradle-version 6.4.1 --distribution-type all
5252

5353
[comment]: <> (!! Do not edit this file but 'docs/templates' or 'docs/root-templates', See [CONTRIBUTING.md] !!)
5454

55-
[Full Example Here](https://github.com/EntryPointKR/SpigradleSample/tree/master/spigot)
55+
[Full Example Here](https://github.com/spigradle/spigradle-sample/tree/master/spigot)
5656

5757
Groovy DSL
5858

docs/templates/template_bungeecord_plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ gradlew wrapper --gradle-version $GRADLE_VERSION --distribution-type all
3838

3939
## Usage
4040

41-
[Full Example Here](https://github.com/EntryPointKR/SpigradleSample/tree/master/bungeecord)
41+
[Full Example Here](https://github.com/spigradle/spigradle-sample/tree/master/bungeecord)
4242

4343
Groovy DSL
4444

0 commit comments

Comments
 (0)