Skip to content

Commit

Permalink
Wrong names
Browse files Browse the repository at this point in the history
  • Loading branch information
CloudS3c committed Jun 18, 2023
1 parent 0a08246 commit c73aa39
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,13 @@ allprojects {

tasks.withType<KotlinCompile>().all {
kotlinOptions {
languageVersion = "1.8"
languageVersion = "1.9"
jvmTarget = "17"
freeCompilerArgs = listOf(
"-Xallow-any-scripts-in-source-roots" ,
"-Xjvm-default=all",
"-Xbackend-threads=4",
"-Xignore-const-optimization-errors",
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion game-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
}

tasks.withType<DokkaTask> {
for (pkg in listOf("gg.rsmod.plugins.api.cfg")) {
for (pkg in listOf("org.alter.api.cfg")) {
packageOptions {
prefix = pkg
suppress = true
Expand Down
10 changes: 5 additions & 5 deletions game-plugins/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
description = "Alter Servers Plugins"

dependencies {
implementation(project(":game-api"))
implementation(project(":game-server"))
implementation(project(":util"))
implementation(project(":net"))
implementation(projects.gameApi)
implementation(projects.gameServer)
implementation(projects.util)
implementation(projects.net)
implementation(kotlin("script-runtime"))
}

tasks.named<Jar>("jar") {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
}
2 changes: 1 addition & 1 deletion game-server/src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="warn" packages="gg.rsmod">
<Configuration status="warn" packages="org.alter">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout disableAnsi="false">
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ nettyAll = "_"
kotlinxSerializationCore = "_"
junit = "4.+"
kotlinTestJunit = "_"
kotlin = "1.8.0"
kotlin = "1.9.0-Beta"

[libraries]
fastutil = { group = "it.unimi.dsi", name = "fastutil", version.ref = "fastutil" }
Expand Down

0 comments on commit c73aa39

Please sign in to comment.