forked from jodconverter/jodconverter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibraries.gradle
49 lines (41 loc) · 3.01 KB
/
libraries.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
// build a map of the dependency artifacts to use. Allows centralized definition
// of the version of artifacts to use. In that respect it serves a role similar
// to <dependencyManagement> in Maven
ext {
useOpenOffice = project.hasProperty('useOpenOffice')
libraries = [
// Apache Commons Libraries
commons_cli : "commons-cli:commons-cli:$commonsCliVersion",
commons_fileupload : "commons-fileupload:commons-fileupload:$commonsFileUploadVersion",
commons_io : "commons-io:commons-io:$commonsIoVersion",
commons_lang3 : "org.apache.commons:commons-lang3:$commonsLang3Version",
// Office Libraries (OpenOffice and LibreOffice)
office_juh : (useOpenOffice ? "org.openoffice:juh:$openOfficeVersion" : "org.libreoffice:juh:$libreOfficeVersion"),
office_jurt : (useOpenOffice ? "org.openoffice:jurt:$openOfficeVersion" : "org.libreoffice:jurt:$libreOfficeVersion"),
office_ridl : (useOpenOffice ? "org.openoffice:ridl:$openOfficeVersion" : "org.libreoffice:ridl:$libreOfficeVersion"),
office_unoil : (useOpenOffice ? "org.openoffice:unoil:$openOfficeVersion" : "org.libreoffice:unoil:$libreOfficeVersion"),
// Spring Libraries
spring_core : "org.springframework:spring-core:$springVersion",
spring_context : "org.springframework:spring-context:$springVersion",
spring_test : "org.springframework:spring-test:$springVersion",
spring_context : "org.springframework:spring-context:$springVersion",
// Spring Boot libraries
spring_boot_dependencies : "org.springframework.boot:spring-boot-dependencies:$springBootVersion",
spring_boot_starter : 'org.springframework.boot:spring-boot-starter',
spring_boot_configuration_processor: 'org.springframework.boot:spring-boot-configuration-processor',
spring_boot_starter_test : 'org.springframework.boot:spring-boot-starter-test',
// Logging Libraries
slf4j_api : "org.slf4j:slf4j-api:$slf4jVersion",
slf4j_log4j : "org.slf4j:slf4j-log4j12:$slf4jVersion",
// Other Libraries
json_java : "org.json:json:$jsonJavaVersion",
servlet_api : "javax.servlet:servlet-api:$servletApiVersion",
// Tests
assertj : "org.assertj:assertj-core:$assertjVersion",
equalsverifier : "nl.jqno.equalsverifier:equalsverifier:${equalsverifierVersion}",
junit : "junit:junit:$junitVersion",
jsr305 : "com.google.code.findbugs:jsr305:$findbugsVersion",
findbugs : "com.google.code.findbugs:findbugs:$findbugsVersion",
mockito : "org.mockito:mockito-all:$mockitoVersion",
]
}