Skip to content

Commit 94a60fc

Browse files
committed
Rename modules
Prefix all modules with necrify and assimilate plugin modules with each platform name
1 parent b592420 commit 94a60fc

File tree

92 files changed

+10
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+10
-10
lines changed
File renamed without changes.

plugin-common/build.gradle.kts renamed to necrify-common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ group = "de.jvstvshd.necrify"
77
version = rootProject.version
88

99
dependencies {
10-
api(projects.api)
10+
api(projects.necrifyApi)
1111
api(libs.bundles.jackson)
1212
api(libs.bundles.database) {
1313
exclude(group = "org.slf4j", module = "slf4j-api")

paper-extension/build.gradle.kts renamed to necrify-paper/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ version = rootProject.version
1010

1111
dependencies {
1212
compileOnly(libs.paper.api)
13-
api(projects.pluginCommon)
13+
api(projects.necrifyCommon)
1414
}
1515

1616
tasks {
1717
shadowJar {
1818
archiveFileName.set("${rootProject.name}-Paper-${project.version}.jar")
1919
dependencies {
20-
include(project(":plugin-common"))
21-
include(project(":api"))
20+
include(project(":necrify-common"))
21+
include(project(":necrify-api"))
2222
}
2323
}
2424
build {
@@ -32,7 +32,7 @@ tasks {
3232
val field = librariesRootComponent.get()::class.java.getDeclaredField("dependencies")
3333
field.isAccessible = true
3434
val set = field.get(librariesRootComponent.get()) as LinkedHashSet<DependencyResult>
35-
val configuration = project(":plugin-common").configurations.getByName("runtimeClasspath")
35+
val configuration = project(":necrify-common").configurations.getByName("runtimeClasspath")
3636
val resolutionResult = configuration.incoming.resolutionResult
3737
set.clear()
3838
set.addAll(

plugin/build.gradle.kts renamed to necrify-velocity/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
}
1414

1515
dependencies {
16-
api(projects.pluginCommon)
16+
api(projects.necrifyCommon)
1717
annotationProcessor(libs.velocity.api)
1818
compileOnly(libs.velocity.api)
1919
compileOnly(libs.luckperms.api)

settings.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
rootProject.name = "necrify"
2-
include("api")
3-
include("plugin")
4-
include("paper-extension")
5-
include("plugin-common")
2+
include("necrify-api")
3+
include("necrify-common")
4+
include("necrify-paper")
5+
include("necrify-velocity")
66

77
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

0 commit comments

Comments
 (0)