-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
52 lines (43 loc) · 1.07 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group 'com.sovdee'
project.ext.jomlVersion = "1.10.5"
configurations.all {
resolutionStrategy.cacheChangingModulesFor 1, 'minutes'
}
repositories {
mavenCentral()
maven {
url 'https://repo.papermc.io/repository/maven-public/'
}
maven {
url 'https://repo.skriptlang.org/releases'
}
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("com.github.SkriptLang:Skript:2.10.2")
implementation "org.joml:joml:${jomlVersion}"
}
processResources {
filter ReplaceTokens, tokens: ["version": project.property("version")]
from("lang/") {
include '*.lang'
into 'lang/'
}
}
javadoc {
source = sourceSets.main.allJava
classpath = configurations.compileClasspath
options.encoding = 'UTF-8'
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
tasks.register('copyJar', Copy) {
dependsOn jar
from "build/libs/skript-particle.jar"
into "e:/PaperServer/plugins"
}