This repository has been archived by the owner on May 22, 2021. It is now read-only.
generated from E-Edu/microservice-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
92 lines (77 loc) · 2.87 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
plugins {
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'checkstyle'
id "com.gorylenko.gradle-git-properties" version "2.2.2"
}
group = 'de.the-morpheus.e-du'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.9'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
compile.exclude module: 'spring-boot-starter-logging'
}
repositories {
mavenCentral()
}
dependencies {
/* Utility */
implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
compile 'com.jcabi:jcabi-manifests:0.7.5'
implementation 'com.auth0:java-jwt:3.10.1'
implementation 'org.apache.logging.log4j:log4j-core:2.12.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.12.0'
implementation ('io.sentry:sentry-log4j2:1.7.30') {
exclude group: "org.apache.logging.log4j"
}
compile 'io.micrometer:micrometer-core:1.4.0'
compile 'io.micrometer:micrometer-registry-influx:1.4.0'
implementation("com.squareup.okhttp3:okhttp:4.5.0")
implementation 'com.google.code.gson:gson:2.8.6'
/* GraphQL */
implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:7.0.0'
implementation 'com.graphql-java:graphql-java-tools:5.2.4'
compile group: 'com.graphql-java-kickstart', name: 'playground-spring-boot-starter', version: '7.0.0'
compile 'com.careykevin:graphql-actuator:0.0.3'
/* Spring */
implementation (group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: '2.2.6.RELEASE') {
exclude group: "commons-logging", module: "commons-logging"
exclude module: "spring-boot-starter-logging"
}
implementation ('org.springframework.boot:spring-boot-starter') {
exclude group: "commons-logging", module: "commons-logging"
exclude module: "spring-boot-starter-logging"
}
developmentOnly ('org.springframework.boot:spring-boot-devtools'){
exclude group: "commons-logging", module: "commons-logging"
exclude module: "spring-boot-starter-logging"
}
compile (group: 'org.springframework', name: 'spring-webmvc', version: '5.2.5.RELEASE') {
exclude group: "commons-logging", module: "commons-logging"
exclude module: "spring-boot-starter-logging"
}
/* Test */
testImplementation 'org.springframework.security:spring-security-test'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
bootJar {
manifest {
attributes 'Implementation-Version': project.version.toString()
attributes 'Implementation-Title': project.name.toString()
attributes 'Build-Time': System.currentTimeMillis()
}
}