-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (27 loc) · 1022 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
39
40
apply plugin: 'java-library'
//apply plugin: 'com.android.library'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
sourceCompatibility = "1.7"
targetCompatibility = "1.7"
version "1.0.0"
ext {
bintrayRepo = 'java-util'
bintrayName = 'java-util'
publishedGroupId = 'in.yajnesh.util'
libraryName = 'java-util'
artifact = 'java-util'
libraryDescription = 'Most used short code snippets generically designed'
siteUrl = 'https://github.com/yajnesh/java-util'
gitUrl = 'https://github.com/yajnesh/java-util.git'
libraryVersion = '1.0.0'
developerId = 'yajnesh'
developerName = 'Yajnesh T'
developerEmail = 'yajnesh.t@gmail.com'
licenseName = 'GNU Public Licence, Version 2.0'
licenseUrl = 'https://www.gnu.org/licenses/'
allLicenses = ["GPL-3.0"]
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'