-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (39 loc) · 1.16 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'java'
}
group 'me.o_nix.assignments'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
def logbackVersion = '1.2.3'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.0'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'ch.qos.logback', name: 'logback-classic', version: logbackVersion
compile group: 'ch.qos.logback', name: 'logback-core', version: logbackVersion
compile group: 'com.google.guava', name: 'guava', version: '25.1-jre'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
compile group: 'com.typesafe', name: 'config', version: '1.3.3'
compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes 'Main-Class': 'me.o_nix.assignments.html_selectors.Application'
}
}
shadowJar {
baseName = 'dist'
}