forked from enonic/app-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (40 loc) · 1.08 KB
/
build.gradle
File metadata and controls
45 lines (40 loc) · 1.08 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
44
45
buildscript {
repositories {
mavenLocal()
jcenter()
maven {
url 'http://repo.enonic.com/public'
}
}
dependencies {
classpath 'com.enonic.gradle:gradle-defaults:1.0.1'
classpath "com.enonic.xp:gradle-plugin:${xpVersion}"
}
}
apply plugin: 'com.enonic.xp.app'
apply plugin: 'com.enonic.defaults'
apply plugin: 'maven'
app {
name = project.appName
displayName = 'RSS feeds'
vendorName = 'Enonic AS'
vendorUrl = 'http://enonic.com'
}
dependencies {
compile "com.enonic.xp:core-api:${xpVersion}"
compile "com.enonic.xp:portal-api:${xpVersion}"
include "com.enonic.xp:lib-portal:${xpVersion}"
include "com.enonic.xp:lib-auth:${xpVersion}"
include "com.enonic.xp:lib-context:${xpVersion}"
include "com.enonic.xp:lib-content:${xpVersion}"
include "com.enonic.xp:lib-thymeleaf:${xpVersion}"
include "com.enonic.xp:lib-xslt:${xpVersion}"
include 'com.enonic.lib:util:1.1.1'
}
repositories {
mavenLocal()
jcenter()
maven {
url 'http://repo.enonic.com/public'
}
}