-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
84 lines (76 loc) · 3.21 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.6.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
repositories {
mavenLocal()
// mavenCentral()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
// maven {
// url = uri('https://maven.google.com')
// }
// maven {
// url = uri('https://repo.spring.io/plugins-release/')
// }
// maven {
// url = uri('https://plugins.gradle.org/m2/')
// }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-amqp:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-data-rest:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-integration:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-mail:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-quartz:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-security:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-web:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-webflux:2.6.4'
implementation 'de.codecentric:spring-boot-admin-starter-client:2.6.3'
implementation 'de.codecentric:spring-boot-admin-starter-server:2.6.3'
implementation 'org.springframework.data:spring-data-rest-hal-browser:3.3.9.RELEASE'
implementation 'org.springframework.session:spring-session-core:2.6.2'
implementation 'org.springframework.boot:spring-boot-configuration-processor:2.6.4'
implementation 'org.projectlombok:lombok:1.18.22'
implementation 'org.jgrapht:jgrapht-core:1.5.1'
implementation 'org.jheaps:jheaps:0.14'
implementation 'org.codehaus.groovy:groovy:3.0.10'
runtimeOnly 'org.springframework.boot:spring-boot-devtools:2.6.4'
runtimeOnly 'mysql:mysql-connector-java:8.0.28'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.4'
testImplementation 'io.projectreactor:reactor-test:3.4.15'
testImplementation 'org.springframework.amqp:spring-rabbit-test:2.4.2'
testImplementation 'org.springframework.integration:spring-integration-test:5.5.9'
testImplementation 'org.springframework.security:spring-security-test:5.6.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.1'
}
group = 'info.nemhauser'
version = '0.1.1'
description = 'turmoil'
java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
task copyProperties(type: Copy) {
from 'properties/.'
into 'build/properties'
}
build.finalizedBy(copyProperties)