-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
32 lines (27 loc) · 930 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
plugins {
id 'java'
id "org.jetbrains.kotlin.jvm" version "1.5.21"
id "com.github.johnrengelman.shadow" version "7.0.0"
}
version '1.20'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.mongodb:mongodb-driver-sync:4.11.1"
implementation group: 'org.jetbrains', name: 'annotations', version: '15.0'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.10.0'
implementation group: 'org.graalvm.js', name: 'js', version: '22.3.1'
implementation files('libs/JMongosh-0.9.jar')
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
testImplementation group: 'commons-io', name: 'commons-io', version: '2.7'
}
test {
minHeapSize = "512m"
maxHeapSize = "1024m"
}
shadowJar {
archiveFileName = "mongo-jdbc-standalone-${version}.jar"
mergeServiceFiles()
}