-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 953 Bytes
/
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.seleniumhq.selenium:selenium-java:4.12.1'
implementation 'org.seleniumhq.selenium:selenium-remote-driver:4.12.1'
implementation 'ch.qos.logback:logback-classic:1.2.3'
}
repositories {
mavenCentral()
}
sourceSets {
main {
java.srcDirs = ['src/main/java']
resources.srcDirs = ['src/main/resources']
}
}
jar {
manifest {
attributes 'Main-Class': 'com.txb.cashdepot.CashDepotReportPull'
}
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from(sourceSets.main.java) {
into 'com/txb/cashdepot'
}
from 'src/main/resources'
}
shadowJar {
archiveBaseName.set('cash_depot_bot')
archiveVersion.set('0.1.0')
archiveClassifier.set('')
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}