-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (40 loc) · 1.19 KB
/
build.gradle
File metadata and controls
47 lines (40 loc) · 1.19 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
46
47
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'nu.studer:gradle-plugindev-plugin:1.0.4'
}
}
repositories {
mavenCentral()
jcenter()
maven { url 'https://repo1.maven.org/maven2' }
}
apply plugin: 'groovy'
apply plugin: 'nu.studer.plugindev'
dependencies {
compile 'com.squareup:javapoet:1.3.0'
compile 'com.android.tools.build:gradle:2.3.1'
compile gradleApi()
compile localGroovy()
}
group = 'com.mb14'
version = '1.2.0'
plugindev {
pluginImplementationClass 'com.mb14.configdroid.ConfigDroidPlugin'
pluginDescription 'Gradle plugin to generate config classes for your Android projects.'
pluginLicenses 'MIT'
pluginTags 'android', 'gradle-plugin', 'configuration'
authorId 'mb-14'
authorName 'Miroojin Bakshi'
authorEmail 'mbakshi1094@gmail.com'
projectUrl 'https://github.com/mb-14/ConfigDroid'
projectInceptionYear '2017'
done() // do not omit this
}
bintray {
user = project.hasProperty('BINTRAY_USER') ? BINTRAY_USER : System.getenv('BINTRAY_USER')
key = project.hasProperty('BINTRAY_API_KEY') ? BINTRAY_API_KEY : System.getenv('BINTRAY_API_KEY')
pkg.repo = 'ConfigDroid'
}