-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (47 loc) · 1.56 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
buildscript {
ext {
springBootVersion = '2.1.7.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'net.ltgt.apt' version '0.10'
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'pl.krasnoludkolo'
version = '0.3.11'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'org.springframework.boot:spring-boot-starter-web'
compile "io.vavr:vavr:0.10.1"
compile 'com.mashape.unirest:unirest-java:1.4.9'
compile 'org.modelmapper:modelmapper:1.1.0'
compile 'org.modelmapper.extensions:modelmapper-jooq:1.1.0'
compile 'org.jooq:jooq:3.10.5'
compile 'com.auth0:java-jwt:3.3.0'
compile 'io.springfox:springfox-swagger2:2.8.0'
compile 'io.springfox:springfox-swagger-ui:2.8.0'
compile 'io.vavr:vavr-jackson:0.9.2'
compile 'com.fasterxml.jackson.module:jackson-module-parameter-names'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8'
compile 'org.mindrot:jbcrypt:0.3m'
compile 'io.github.krasnoludkolo:haste:0.2.1'
compileOnly 'org.projectlombok:lombok:1.18.8'
runtime 'org.springframework.boot:spring-boot-devtools'
runtime 'org.postgresql:postgresql'
testCompile 'org.springframework.boot:spring-boot-starter-test'
}