-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
46 lines (37 loc) · 1.52 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
group = 'org.apereo.portal'
version = '0.9.0-SNAPSHOT'
description = 'Apereo Soffit'
apply plugin: 'java'
apply plugin: 'maven'
defaultTasks 'clean', 'build'
repositories {
mavenLocal()
mavenCentral()
}
configurations {
/*
* Defines a 'provided' scope similar to the one in Maven. Dependencies
* defined using provided will not become transitive dependencies.
*/
provided
/*
* Makes provided dependencies available on the compile classpath in a way
* that works both from the command line and in Buildship.
*/
compile.extendsFrom provided
}
dependencies {
compile ("com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}")
compile("commons-io:commons-io:${commonsIoVersion}")
compile("io.jsonwebtoken:jjwt:${jjwtVersion}")
compile("javax.servlet:jstl:${jstlVersion}")
compile("net.sf.ehcache:ehcache-core:${ehcacheVersion}")
compile("org.apache.commons:commons-lang3:${commonsLang3Version}")
compile("org.apache.httpcomponents:httpclient:${httpclientVersion}")
compile("org.jasypt:jasypt:${jasyptVersion}")
compile group: 'org.slf4j', name: 'slf4j-api', version: "${slf4jVersion}"
compile group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
compile group: 'org.springframework', name: 'spring-webmvc-portlet', version: "${springVersion}"
provided group: 'javax.servlet', name: 'servlet-api', version: "${servletVersion}"
provided group: 'org.apache.portals', name: 'portlet-api_2.1.0_spec', version: '1.0'
}