Skip to content

Commit

Permalink
finally finished the server
Browse files Browse the repository at this point in the history
  • Loading branch information
vaporvee committed Sep 28, 2024
1 parent b6b3591 commit ab06ba0
Show file tree
Hide file tree
Showing 3 changed files with 288 additions and 71 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 27 additions & 5 deletions boundless-server/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,19 +1,41 @@
plugins {
id("java")
id("com.github.johnrengelman.shadow") version "7.1.2"
}

group = "org.example"
version = "1.0-SNAPSHOT"
group = "com.vaporvee"
version = "1.0"

repositories {
mavenCentral()
}

dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")

implementation("org.apache.logging.log4j:log4j-api:2.24.0")
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
implementation("com.google.code.gson:gson:2.8.8")

testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}

tasks {
jar {
manifest {
attributes(
"Implementation-Title" to project.name,
"Implementation-Version" to project.version,
"Main-Class" to "com.vaporvee.boundlessutil.BoundlessServer"
)
}
}

shadowJar {
archiveFileName.set("boundless-server.jar")
manifest {
attributes(
"Main-Class" to "com.vaporvee.boundlessutil.BoundlessServer"
)
}
}
}
Loading

0 comments on commit ab06ba0

Please sign in to comment.