-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
51 lines (40 loc) · 1.52 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
plugins {
id "org.springframework.boot" version "2.1.2.RELEASE"
id "java"
}
apply plugin: 'io.spring.dependency-management'
group 'chimera-demo'
version '1.1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.deprecation = false
options.warnings = false
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
repositories {
jcenter()
mavenLocal()
maven { url "https://dl.bintray.com/vmantek/maven" }
maven { url 'http://jpos.org/maven' }
maven { url 'http://download.oracle.com/maven' }
}
dependencies {
compile 'org.jpos:jpos:2.1.1'
compile 'com.vmantek.chimera:chimera:1.1.0'
compile 'org.jpos.ee:jposee-dbsupport:2.2.2'
compile 'org.jpos.ee:jposee-txn:2.2.2'
compile 'org.jpos.ee:jposee-syslog:2.2.2'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'org.springframework.boot:spring-boot-starter-data-rest'
compile 'org.springframework.boot:spring-boot-starter-actuator'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5'
compile 'org.jolokia:jolokia-core'
compile 'org.hsqldb:hsqldb'
compileOnly 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.18.2'
compileOnly group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.0.1'
compileOnly group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0.1'
}