forked from rodrigopaulino/liferay-geolocation-bulk-import
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
34 lines (25 loc) · 1.65 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
apply plugin: "eclipse"
dependencies {
compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.6.0"
compile group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.6.1"
compile group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.6.1"
compile group: "com.liferay", name: "com.liferay.dynamic.data.mapping.api", version: "3.0.0"
compile group: "com.liferay", name: "com.liferay.journal.api", version: "2.2.0"
compile group: "com.liferay", name: "com.liferay.portal.search.engine.adapter.api", version: "3.0.0"
compile group: "com.liferay", name: "com.liferay.portal.search.api", version: "3.0.0"
compile group: "com.liferay", name: "com.liferay.portal.search.spi", version: "3.3.1"
compile group: "com.liferay", name: "com.liferay.petra.string", version: "2.0.0"
compile group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "11.8.0"
compile group: "com.liferay.portal", name: "com.liferay.portal.impl", version: "2.9.0"
compile group: "com.liferay.portal", name: "com.liferay.util.taglib", version: "2.0.0"
compile group: "javax.portlet", name: "portlet-api", version: "2.0"
compile group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
compile group: "javax.servlet.jsp", name: "javax.servlet.jsp-api", version: "2.3.1"
compile group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.3.0"
testCompile group: "com.liferay", name: "com.liferay.portal.search", version: "6.0.30"
testCompile group: "com.liferay", name: "com.liferay.petra.lang", version: "2.0.0"
}
repositories {
mavenLocal()
maven { url "http://central.maven.org/maven2/" }
}