mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-10 01:18:07 +01:00
feat(common): use configurate for config [wip]
not finished, just starting
This commit is contained in:
parent
7913bbe8e6
commit
871b320f6c
3 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,8 @@ plugins {
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":lighteco-api"))
|
api(project(":lighteco-api"))
|
||||||
|
|
||||||
|
implementation("org.spongepowered:configurate-yaml:4.0.0")
|
||||||
|
|
||||||
compileOnly("org.projectlombok:lombok:1.18.28")
|
compileOnly("org.projectlombok:lombok:1.18.28")
|
||||||
annotationProcessor("org.projectlombok:lombok:1.18.28")
|
annotationProcessor("org.projectlombok:lombok:1.18.28")
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
package dev.xhyrom.lighteco.common.config;
|
||||||
|
|
||||||
|
public class Config {
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* Common classes used by all platform-specific implementations.
|
||||||
|
*/
|
||||||
|
package dev.xhyrom.lighteco.common;
|
Loading…
Reference in a new issue