-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (39 loc) · 881 Bytes
/
build.gradle
File metadata and controls
45 lines (39 loc) · 881 Bytes
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
plugins {
id 'java-library'
id 'maven-publish'
}
group = 'me.marlester'
version = '1.2.0'
repositories {
mavenCentral()
maven {
url 'https://repo.opencollab.dev/maven-releases/'
}
maven {
url 'https://repo.opencollab.dev/maven-snapshots/'
}
maven {
url 'https://jitpack.io'
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = project.name
version = version
from components.java
}
}
}
dependencies {
compileOnly 'org.jetbrains:annotations:24.1.0'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
api 'org.geysermc.mcprotocollib:protocol:1.21.4-SNAPSHOT'
}