This repository was archived by the owner on Jun 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (44 loc) · 1.47 KB
/
build.gradle
File metadata and controls
53 lines (44 loc) · 1.47 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
48
49
50
51
52
53
// Configure build
//----------------------------------------------------------------------------------------------------------------------
buildscript {
ext.orchid_version = '0.15.1'
repositories {
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://dl.bintray.com/javaeden/Orchid/' }
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "gradle.plugin.com.eden:orchidPlugin:$orchid_version"
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
apply plugin: 'base'
// Configure Project
//----------------------------------------------------------------------------------------------------------------------
group 'com.eden'
allprojects {
repositories {
google()
jcenter()
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url 'https://dl.bintray.com/javaeden/Orchid/' }
maven { url 'https://jitpack.io' }
}
}
// Get release info
//----------------------------------------------------------------------------------------------------------------------
tag {
message { "Bump version to ${version}" }
}
task getReleaseName {
doLast {
println project.version.toString()
}
}
task deploy {
doLast { }
}