-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
58 lines (49 loc) · 2.01 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
plugins {
id 'com.github.sherter.google-java-format' version '0.8'
}
apply plugin: 'eclipse'
apply plugin: 'java'
group = 'org.apereo.openequella'
version = '1.5.1'
sourceCompatibility = 1.8
repositories {
maven {
url "https://mvnrepository.com/"
}
mavenCentral()
}
dependencies {
compile group: 'org.json', name: 'json', version: '20170516'
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.5'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.3'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.3'
compile group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: '4.5.3'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.9.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.9.0'
// https://mvnrepository.com/artifact/javax.mail/javax.mail-api
compile group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'
compile group: 'javax.mail', name: 'javax.mail-api', version: '1.6.2'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
// https://mvnrepository.com/artifact/com.kaltura/kalturaApiClient
compile group: 'commons-io', name: 'commons-io', version: '2.6'
// https://mvnrepository.com/artifact/com.google.guava/guava
compile group: 'com.google.guava', name: 'guava', version: '19.0'
// https://mvnrepository.com/artifact/org.postgresql/postgresql
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.6'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
jar {
manifest {
attributes 'Main-Class': 'org.apereo.openequella.tools.toolbox.Driver'
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
test {
exclude 'org/apereo/openequella/tools/toolbox/CheckFiles*'
}