-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 799 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 799 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group 'com.avathartech'
version '1.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_21
}
mainClassName="com.avathartech.demosql2o.Main"
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
// https://mvnrepository.com/artifact/org.sql2o/sql2o
implementation group: 'org.sql2o', name: 'sql2o', version: '1.8.0'
// https://mvnrepository.com/artifact/com.h2database/h2
implementation group: 'com.h2database', name: 'h2', version: '2.2.224'
}
shadowJar{
archiveBaseName.set("app")
archiveClassifier.set('')
archiveVersion.set('')
}