-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (45 loc) · 1.57 KB
/
build.gradle
File metadata and controls
52 lines (45 loc) · 1.57 KB
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
plugins {
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'scala'
id 'java'
}
group = 'com.cacoveanu'
version = '4.8'
sourceCompatibility = '1.14'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.scala-lang:scala-library:2.13.2'
implementation 'com.github.junrar:junrar:4.0.0'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.security:spring-security-test'
implementation 'org.postgresql:postgresql:9.4-1206-jdbc42'
implementation 'commons-codec:commons-codec:1.14'
implementation 'org.scala-lang.modules:scala-xml_2.13:1.3.0'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'org.apache.pdfbox:pdfbox:2.0.20'
implementation 'org.sejda.imageio:webp-imageio:0.1.6'
implementation 'org.apache.xmlgraphics:batik:1.14'
implementation 'org.apache.xmlgraphics:batik-transcoder:1.14'
implementation 'org.apache.xmlgraphics:batik-codec:1.14'
runtimeOnly 'org.hsqldb:hsqldb'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
bootJar {
from ("LICENSE") {
into ("META-INF")
}
archivesBaseName="reader"
project.version=""
}