-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 975 Bytes
/
build.gradle
File metadata and controls
39 lines (32 loc) · 975 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.30'
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.1'
}
repositories {
mavenCentral()
maven { url = 'https://jitpack.io' }
}
configurations {
include
implementation.extendsFrom include
}
dependencies {
include group: 'org.commonmark', name: 'commonmark', version: '0.18.0'
include group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
include group: 'com.formdev', name: 'flatlaf', version: '1.5'
include group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.1'
include group: 'com.github.blackears', name: 'svgSalamander', version: 'v1.1.1'
}
jar {
manifest {
attributes 'Main-Class': 'org.bundleproject.discover.start.MainKt'
}
enabled = false
}
shadowJar {
archiveClassifier.set("")
configurations = [project.configurations.include]
duplicatesStrategy DuplicatesStrategy.EXCLUDE
}
jar.dependsOn shadowJar