-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (32 loc) · 831 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
group 'com.battyp.lancaster.sqlite-visualiser'
version '1.0'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
task copyTestResources(type: Copy) {
from "${projectDir}/src/main/resources"
into "${projectDir}/src/test/resources"
}
processTestResources.dependsOn copyTestResources
jar {
manifest {
attributes 'Main-Class': 'battyp.lancaster.sqlitevisualiser.app.SqliteVisualisationApp'
}
from {
configurations.runtime.collect {
it.directory ? it : zipTree(it)
}
}
}
test {
exclude '**/ui/**'
}
dependencies {
compile 'org.xerial:sqlite-jdbc:3.8.11.2'
testCompile 'org.xerial:sqlite-jdbc:3.8.11.2'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "org.loadui:testFx:3.1.2"
}