mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-23 07:21:04 +01:00
build: add serverloader
easier way to test plugin
This commit is contained in:
parent
871b320f6c
commit
d7b93e4cd7
5 changed files with 33 additions and 1 deletions
10
.idea/codeStyles/Project.xml
Normal file
10
.idea/codeStyles/Project.xml
Normal 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>
|
5
.idea/codeStyles/codeStyleConfig.xml
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
|
||||
</state>
|
||||
</component>
|
4
bukkittest/.gitignore
vendored
4
bukkittest/.gitignore
vendored
|
@ -39,4 +39,6 @@ bin/
|
|||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
||||
.DS_Store
|
||||
|
||||
runServer/
|
|
@ -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 {
|
||||
|
|
|
@ -10,3 +10,11 @@ sequenceOf(
|
|||
include("lighteco-$it")
|
||||
project(":lighteco-$it").projectDir = file(it)
|
||||
}
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue