-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
42 lines (33 loc) · 753 Bytes
/
build.gradle.kts
File metadata and controls
42 lines (33 loc) · 753 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
plugins {
`java-library`
id("com.github.johnrengelman.shadow") version "8.1.1"
}
java.sourceCompatibility = JavaVersion.VERSION_17
tasks.build {
dependsOn(tasks.shadowJar)
}
allprojects {
group = "com.mefrreex.vkbot"
description = "vkrconbot"
version = "1.5.1"
}
subprojects {
apply {
plugin("java-library")
}
repositories {
mavenLocal()
maven("https://repo1.maven.org/maven2")
maven("https://repo.maven.apache.org/maven2/")
maven("https://jitpack.io")
}
dependencies {
api("com.vk.api:sdk:1.0.14")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
tasks.withType<Javadoc> {
options.encoding = "UTF-8"
}
}