-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
38 lines (31 loc) · 867 Bytes
/
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
buildscript {
repositories {
jcenter()
}
}
plugins {
id "com.gradle.plugin-publish" version "0.9.3"
}
apply plugin: 'maven'
apply plugin: 'groovy'
dependencies {
compile gradleApi()
compile localGroovy()
}
group = 'me.zhangls'
archivesBaseName = 'mulchannel'
version = '0.2'
pluginBundle {
website = 'https://github.com/ihrthk/android-gradle-mulchannel-plugin'
vcsUrl = 'https://github.com/ihrthk/android-gradle-mulchannel-plugin'
description = 'Gradle plugin for generating multiple channel apks'
plugins {
mulchannelPlugin {
id = 'me.zhangls.mulchannel'
displayName = 'Gradle mulchannel plugin'
description = 'Gradle plugin for generating multiple channel apks'
version = '0.2'
tags = ['gradle', 'plugin', 'multiple', 'channel']
}
}
}