-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
37 lines (30 loc) · 1.43 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.2.5.RELEASE'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation 'org.apache.logging.log4j:log4j:2.13.0'
implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
implementation 'org.hibernate:hibernate-core:5.4.12.Final'
implementation 'org.xerial:sqlite-jdbc:3.30.1'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.2.5.RELEASE'
implementation 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
implementation 'com.enigmabridge:hibernate4-sqlite-dialect:0.1.2'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:2.2.5.RELEASE'
testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.2.5.RELEASE'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.2.5.RELEASE'
testImplementation 'org.hibernate:hibernate-core:5.4.12.Final'
testImplementation 'org.xerial:sqlite-jdbc:3.30.1'
testImplementation 'com.github.gwenn:sqlite-dialect:0.1.0'
testImplementation 'com.h2database:h2:1.4.200'
}
apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin