1
0
Fork 0
mirror of https://github.com/xHyroM/lighteco.git synced 2024-09-19 21:03:18 +02:00

build: add serverloader

easier way to test plugin
This commit is contained in:
Jozef Steinhübl 2023-08-26 08:43:09 +02:00
parent 871b320f6c
commit d7b93e4cd7
5 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,10 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<JetCodeStyleSettings>
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</JetCodeStyleSettings>
<codeStyleSettings language="kotlin">
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</codeStyleSettings>
</code_scheme>
</component>

View file

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
</state>
</component>

View file

@ -39,4 +39,6 @@ bin/
.vscode/
### Mac OS ###
.DS_Store
.DS_Store
runServer/

View file

@ -1,5 +1,12 @@
import lol.koblizek.serverloader.plugin.server
plugins {
id("lighteco.platform-logic")
id("lol.koblizek.serverloader") version "1.1"
}
server {
version = "1.20.1"
}
repositories {

View file

@ -10,3 +10,11 @@ sequenceOf(
include("lighteco-$it")
project(":lighteco-$it").projectDir = file(it)
}
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}