-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (36 loc) · 1.31 KB
/
build.gradle
File metadata and controls
46 lines (36 loc) · 1.31 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
apply plugin: 'java'
configurations {
extraLibs {
description = "application embedded libraries"
transitive = true
}
compileInclude {
extendsFrom extraLibs
}
}
buildscript {
repositories {
jcenter()
}
}
allprojects {
repositories {
jcenter()
}
dependencies {
testCompile 'junit:junit:4.12'
compile 'junit:junit:4.12'
compileOnly group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.0.0"
compileOnly group: "com.liferay.portal", name: "com.liferay.util.taglib", version: "2.0.0"
compileOnly group: "javax.portlet", name: "portlet-api", version: "2.0"
compileOnly group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
compileOnly group: "jstl", name: "jstl", version: "1.2"
compileOnly group: "org.osgi", name: "osgi.cmpn", version: "6.0.0"
compileOnly group: 'com.itextpdf', name: 'itextpdf', version: '5.5.12'
compileInclude group: 'com.itextpdf', name: 'itextpdf', version: '5.5.12'
testCompile group: 'com.itextpdf', name: 'itextpdf', version: '5.5.12'
compileOnly group: "com.liferay", name: "org.freemarker", version: "2.3.23.LIFERAY-PATCHED-4"
compileOnly group: 'commons-io', name: 'commons-io', version: '1.4'
compileInclude group: 'commons-io', name: 'commons-io', version: '1.4'
}
}