Skip to content

Commit

Permalink
更名src -> eplugin-core
Browse files Browse the repository at this point in the history
  • Loading branch information
4o4E committed Sep 25, 2022
1 parent ee2084b commit f355a94
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion eplugin-channel/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// spigot
compileOnly("org.spigotmc:spigot-api:${Versions.spigot}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-bentobox/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
// BentoBox
compileOnly("world.bentobox:bentobox:${Hooks.bentobox}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-itemrepo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
// itemrepo
compileOnly("top.e404:item-repo:${Hooks.itemrepo}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-mmoitems/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
// mythic lib
compileOnly("io.lumine:MythicLib-dist:${Hooks.mythicLib}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-placeholderapi/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
// placeholderAPI
compileOnly("me.clip:placeholderapi:2.11.1")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-playerpoints/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
// playerpoints
compileOnly("org.black_ixx:playerpoints:${Hooks.playerPoints}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-psr/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
// jetbrains annotations
compileOnly("org.jetbrains:annotations:23.0.0")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-slimefun/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
// sf
compileOnly("com.github.Slimefun:Slimefun4:${Hooks.slimefun}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-hook-worldguard/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
// worldguard
compileOnly("com.sk89q.worldguard:worldguard-bukkit:${Hooks.worldguard}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-menu/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
// spigot
compileOnly("org.spigotmc:spigot-api:${Versions.spigot}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion eplugin-mysql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
api("org.apache.commons:commons-lang3:3.12.0")

// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))

// test
testImplementation(kotlin("test", Versions.kotlin))
Expand Down
2 changes: 1 addition & 1 deletion eplugin-serialization-worldguard/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
// spigot
compileOnly("org.spigotmc:spigot-api:${Versions.spigot}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
implementation(project(":eplugin-hook-worldguard"))
implementation(project(":eplugin-serialization"))
// worldguard
Expand Down
2 changes: 1 addition & 1 deletion eplugin-serialization/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
// spigot
compileOnly("org.spigotmc:spigot-api:${Versions.spigot}")
// eplugin
implementation(rootProject)
implementation(project(":eplugin-core"))
// serialization
api(kotlinx("serialization-core-jvm", "1.3.3"))
api(kotlinx("serialization-json", "1.3.3"))
Expand Down

0 comments on commit f355a94

Please sign in to comment.