File tree Expand file tree Collapse file tree 2 files changed +75
-0
lines changed Expand file tree Collapse file tree 2 files changed +75
-0
lines changed Original file line number Diff line number Diff line change 1+ .gradle
2+ build /
3+ ! gradle /wrapper /gradle-wrapper.jar
4+ ! ** /src /main /** /build /
5+ ! ** /src /test /** /build /
6+
7+ # ## IntelliJ IDEA ###
8+ .idea /modules.xml
9+ .idea /jarRepositories.xml
10+ .idea /compiler.xml
11+ .idea /libraries /
12+ * .iws
13+ * .iml
14+ * .ipr
15+ out /
16+ ! ** /src /main /** /out /
17+ ! ** /src /test /** /out /
18+
19+ # ## Eclipse ###
20+ .apt_generated
21+ .classpath
22+ .factorypath
23+ .project
24+ .settings
25+ .springBeans
26+ .sts4-cache
27+ bin /
28+ ! ** /src /main /** /bin /
29+ ! ** /src /test /** /bin /
30+
31+ # ## NetBeans ###
32+ /nbproject /private /
33+ /nbbuild /
34+ /dist /
35+ /nbdist /
36+ /.nb-gradle /
37+
38+ # ## VS Code ###
39+ .vscode /
40+
41+ # ## Mac OS ###
42+ .DS_Store
Original file line number Diff line number Diff line change 1+ plugins {
2+ kotlin(" jvm" ) version " 1.8.20"
3+ }
4+
5+ group = " net.onelitefeather"
6+
7+ repositories {
8+ mavenCentral()
9+ maven(" https://papermc.io/repo/repository/maven-public/" )
10+ }
11+
12+ dependencies {
13+ implementation(rootProject)
14+ compileOnly(" io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT" )
15+ implementation(" io.papermc:paperlib:1.0.8" )
16+ testImplementation(platform(" org.junit:junit-bom:5.9.1" ))
17+ testImplementation(" org.junit.jupiter:junit-jupiter" )
18+ }
19+
20+ tasks {
21+ test {
22+ useJUnitPlatform()
23+ }
24+ }
25+
26+ kotlin {
27+ jvmToolchain(17 )
28+ sourceSets.all {
29+ languageSettings {
30+ languageVersion = " 2.0"
31+ }
32+ }
33+ }
You can’t perform that action at this time.
0 commit comments