-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (44 loc) · 1.65 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
52
plugins {
id 'scala'
id 'idea'
id 'application'
}
mainClassName = project.hasProperty('mc') ? project.mc : 'idv.codievilky.august.TestMain'
group 'codievilky.august'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
version = [
'jackson': '2.11.2',
'okhttp' : '4.9.0'
]
dependencies {
implementation "org.scala-lang:scala-reflect:2.13.3"
testImplementation 'junit:junit:4.12'
implementation 'commons-codec:commons-codec:1.14'
implementation 'org.bouncycastle:bcprov-jdk15on:1.66'
implementation 'commons-io:commons-io:2.8.0'
implementation "com.fasterxml.jackson.core:jackson-core:$version.jackson"
implementation "com.fasterxml.jackson.core:jackson-databind:$version.jackson"
implementation "com.fasterxml.jackson.core:jackson-annotations:$version.jackson"
implementation "com.fasterxml.jackson.module:jackson-module-scala_2.13:$version.jackson"
implementation "com.squareup.okhttp3:okhttp:$version.okhttp"
implementation group: 'org.scala-lang.modules', name: 'scala-xml_2.13', version: '1.3.0'
implementation group: 'net.ruippeixotog', name: 'scala-scraper_2.13', version: '2.2.0'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
implementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
implementation group: 'org.clapper', name: 'grizzled-slf4j_2.13', version: '1.3.4'
compileOnly 'org.projectlombok:lombok:1.18.12'
}
task create_dirs {
doLast {
sourceSets*.scala.srcDirs*.each {
it.mkdirs()
}
sourceSets*.resources.srcDirs*.each {
it.mkdirs()
}
}
}