forked from selbekk/app-favicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (54 loc) · 1.43 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
59
60
buildscript {
repositories {
mavenLocal()
jcenter()
maven {
url 'http://repo.enonic.com/public'
}
}
dependencies {
classpath "com.enonic.xp:gradle-plugin:${xpVersion}"
classpath 'net.researchgate:gradle-release:2.3.4'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
}
}
apply plugin: 'com.enonic.xp.app'
apply plugin: 'net.researchgate.release'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'java'
app {
name = project.appName
displayName = project.displayName
vendorName = 'Kristofer Selbekk'
vendorUrl = 'http://www.selbekk.io'
}
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
pkg {
repo = 'maven'
name = project.appName
userOrg = 'selbekk'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/selbekk/app-favicon.git'
version {
name = project.version
released = new Date()
configurations = ['archives']
}
}
}
dependencies {
compile "com.enonic.xp:core-api:${xpVersion}"
compile "com.enonic.xp:portal-api:${xpVersion}"
include "com.enonic.xp:lib-content:${xpVersion}"
include "com.enonic.xp:lib-portal:${xpVersion}"
include "com.enonic.xp:lib-cache:${xpVersion}"
}
repositories {
mavenLocal()
jcenter()
maven {
url 'http://repo.enonic.com/public'
}
}