-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
107 lines (86 loc) · 3.71 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
buildscript {
ext {
springBootVersion = '3.2.5'
}
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
}
}
plugins {
id("java-library") // or id("application")
}
tasks.withType(Jar).configureEach { setDuplicatesStrategy(DuplicatesStrategy.EXCLUDE) }
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'
repositories {
mavenCentral()
}
configurations {
// We're using HikariCP instead
implementation.exclude module: "tomcat-jdbc"
// We're using Log4j2 instead
implementation.exclude module: "spring-boot-starter-logging"
}
dependencies {
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-log4j2'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-tomcat'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
//TEMP APPLICATION PROPERTIES HELPER
runtimeOnly 'org.springframework.boot:spring-boot-properties-migrator'
implementation "be.woutschoovaerts:mollie:3.6.1"
implementation 'org.thymeleaf:thymeleaf-spring6'
implementation 'org.thymeleaf:thymeleaf'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
implementation 'com.google.guava:guava:32.0.0-jre'
implementation 'org.hibernate.validator:hibernate-validator'
implementation 'org.apache.commons:commons-lang3'
implementation 'org.apache.httpcomponents:httpclient'
implementation 'com.google.zxing:core:3.5.0'
implementation 'com.google.zxing:javase:3.5.0'
implementation 'org.webjars:bootstrap:4.0.0-beta.2'
implementation 'org.webjars.bower:eonasdan-bootstrap-datetimepicker:4.17.37'
implementation 'org.webjars.bower:momentjs:2.10.6'
implementation 'org.webjars.bowergithub.wisvch:bootstrap-theme:4.6.1-3'
implementation 'org.webjars.bower:quagga:0.11.6'
implementation 'org.webjars:sprintf.js:1.0.0'
implementation 'org.webjars:font-awesome:5.0.13'
implementation 'org.webjars.npm:flatpickr:4.5.1'
implementation 'org.webjars.bowergithub.alex-d:trumbowyg:2.18.0'
implementation 'org.flywaydb:flyway-core'
implementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation "com.googlecode.json-simple:json-simple:1.1.1"
implementation 'net.sf.biweekly:biweekly:0.6.0'
runtimeOnly 'org.hsqldb:hsqldb'
runtimeOnly 'org.postgresql:postgresql'
implementation 'org.fluttercode.datafactory:datafactory:0.8'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'com.tngtech.java:junit-dataprovider:1.5.0'
implementation 'org.javatuples:javatuples:1.2'
implementation 'com.auth0:java-jwt:4.4.0'
implementation 'com.google.api-client:google-api-client:2.6.0'
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20240723-2.0.0'
}
test {
maxHeapSize = "4096m"
}