forked from zhcet-amu/zhcet-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
117 lines (98 loc) · 4.65 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
108
109
110
111
112
113
114
115
116
117
buildscript {
ext {
springBootVersion = '2.0.4.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'amu'
version '1.4.5-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
springBoot {
buildInfo()
}
def flexmark_version = "0.32.22"
configurations {
compile.exclude module: "spring-boot-starter-tomcat"
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-mail")
implementation("org.springframework.boot:spring-boot-starter-undertow")
implementation("org.springframework.boot:spring-boot-devtools")
implementation("org.springframework.boot:spring-boot-starter-actuator")
compileOnly("org.springframework.boot:spring-boot-configuration-processor")
implementation("org.thymeleaf.extras:thymeleaf-extras-springsecurity4")
implementation 'javax.interceptor:javax.interceptor-api:1.2.2' // TODO: Remove when workaround fix is found
implementation 'mysql:mysql-connector-java'
implementation "org.hibernate:hibernate-envers"
implementation "org.flywaydb:flyway-core:5.1.4"
implementation "com.j256.simplecsv:simplecsv:2.3"
implementation "org.apache.commons:commons-text:1.4"
implementation 'commons-validator:commons-validator:1.6', {
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation 'org.modelmapper:modelmapper:2.2.0'
implementation 'com.github.darrachequesne:spring-data-jpa-datatables:5.0.0'
implementation 'com.google.firebase:firebase-admin:6.3.0'
implementation 'commons-io:commons-io:2.6'
implementation 'org.imgscalr:imgscalr-lib:4.2'
implementation 'com.github.ben-manes.caffeine:caffeine:2.6.2'
implementation 'org.jboss.aerogear:aerogear-otp-java:1.0.0'
// Sentry
implementation 'io.sentry:sentry-spring:1.7.5'
implementation 'io.sentry:sentry-logback:1.7.5'
// Open Feign
// implementation 'io.github.openfeign:feign-core:9.5.1'
// implementation 'io.github.openfeign:feign-okhttp:9.5.1'
// implementation 'io.github.openfeign:feign-jackson:9.5.1'
// Markdown Processor
implementation "com.vladsch.flexmark:flexmark:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-anchorlink:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-autolink:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-emoji:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-gfm-tasklist:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-gfm-tables:${flexmark_version}"
implementation "com.vladsch.flexmark:flexmark-ext-superscript:${flexmark_version}"
// WebJars
implementation "org.webjars:bootstrap:4.1.3"
implementation "org.webjars:jquery:3.2.1"
implementation 'org.webjars:tether:1.4.0'
implementation 'org.webjars:toastr:2.1.2'
implementation 'org.webjars:momentjs:2.22.2'
implementation 'org.webjars:jquery-throttle-debounce-plugin:1.1'
implementation 'org.webjars.bower:mui:0.9.38'
implementation 'org.webjars:jquery-blockui:2.70'
implementation 'org.webjars.npm:corejs-typeahead:1.1.1'
// DataTables
implementation 'org.webjars:datatables:1.10.19'
implementation 'org.webjars:datatables-buttons:1.5.1'
implementation 'org.webjars.bower:datatables.net-select:1.2.3'
implementation 'org.webjars.bower:datatables.net-select-bs:1.2.3'
implementation 'org.webjars:jszip:3.1.0'
implementation 'org.webjars.bower:pdfmake:0.1.36'
implementation 'org.webjars:webjars-locator-core'
compileOnly "org.projectlombok:lombok:1.18.2"
// Workaround for Java 9+ modules missing problem
implementation 'javax.xml.bind:jaxb-api'
implementation 'com.sun.xml.bind:jaxb-impl:2.3.0.1'
implementation 'com.sun.xml.bind:jaxb-core:2.3.0.1'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test")
}
compileJava.dependsOn(processResources)