-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
62 lines (48 loc) · 1.79 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
plugins {
id 'org.springframework.boot' version '3.3.0'
id 'application'
}
repositories {
mavenCentral()
maven { url "https://clojars.org/repo" }
}
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = '17'
targetCompatibility = '17'
group = 'uk.gov.fco.documentupload'
version = '1.0.0'
application {
mainClassName = 'uk.gov.fco.documentupload.Application'
}
bootJar {
archiveFileName = 'document-upload.jar'
manifest {
attributes "Implementation-Version": version
}
}
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.32'
compileOnly 'org.projectlombok:lombok:1.18.10'
implementation 'com.amazonaws:aws-java-sdk-s3control:1.12.740'
implementation 'software.amazon.awssdk:rekognition:2.20.162'
implementation 'software.amazon.awssdk:sts:2.21.6'
implementation 'fi.solita.clamav:clamav-client:1.0.1'
implementation 'org.springdoc:springdoc-openapi-ui:1.8.0'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-jersey'
implementation 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'org.apache.pdfbox:pdfbox:2.0.31'
implementation 'org.apache.pdfbox:pdfbox-tools:2.0.31'
implementation 'org.apache.tika:tika-core:2.9.2'
implementation 'commons-io:commons-io:2.11.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.mockito:mockito-core:5.12.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}
compileJava.dependsOn(processResources)