-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 773 Bytes
/
Copy pathbuild.gradle
File metadata and controls
35 lines (27 loc) · 773 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
plugins {
id 'java'
}
group 'il.ac.idc.ap'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
test {
reports {
junitXml.required = true
html.required = true
}
}
// In this section you declare where to find the dependencies of your project
repositories {
flatDir {
dirs 'lib'
}
// Use 'mavenCentral' for resolving your dependencies.
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.36.0.3'
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.3'
testImplementation 'junit:junit:4.13'
testImplementation fileTree(include: ['*.jar'], dir: 'lib')
}