-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (55 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
group 'com.uft.pbd.tsbh'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
flatDir {
dirs '/home/nowayrlz/Downloads/'
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
//classpath("com.objectdb:objectdb:2.7.0")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
jar {
baseName = 'DBF-Reader'
version = '0.1.0'
group = 'TSBH'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// tag::jetty[]
//compile("org.xerial:sqlite-jdbc:3.8.11.2")
// https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.16.1'
//compile files('/home/nowayrlz/Downloads/dans-dbf-lib-1.0.0-beta-10.jar')
compile fileTree(dir: 'lib', include: '*.jar')
compile("net.kemitix:sqlite-dialect:0.1.0")
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.springframework.boot:spring-boot-devtools")
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
//compile("com.github.albfernandez:javadbf:1.2.0")
compile("org.springframework.boot:spring-boot-starter-jetty")
// end::jetty[]
// tag::actuator[]
compile("org.springframework.boot:spring-boot-starter-actuator")
// end::actuator[]
compile('org.springframework.boot:spring-boot-starter-data-jpa') {
exclude module: 'spring-boot-starter-jdbc' //by artifact name
exclude module: 'hibernate-entitymanager' //by artifact name
}
compile('org.eclipse.persistence:javax.persistence:2.1.0')
compile "com.google.guava:guava:16+"
}