-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
71 lines (55 loc) · 1.67 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
61
62
63
64
65
66
67
68
69
70
71
buildscript {
ext.kotlin_version = '1.1.61'
ext.extraConfVersion = '3.0.3'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.15"
classpath "com.netflix.nebula:gradle-extra-configurations-plugin:$extraConfVersion"
}
}
plugins {
id "com.jfrog.bintray" version "1.6"
id "com.github.johnrengelman.shadow" version "1.2.3"
}
apply plugin: "kotlin"
apply plugin: 'org.jetbrains.dokka'
apply plugin: "nebula.provided-base"
apply plugin: 'maven'
apply plugin: 'maven-publish'
group 'io.github.jupf.staticlog'
version '2.2.0'
compileJava {
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
}
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
provided 'com.google.android:android:4.1.+'
}
rootProject.ext {
bintrayRepo = 'maven'
bintrayName = 'StaticLog'
libraryVersion = version
publishedGroupId = 'io.github.jupf.staticlog'
libraryName = 'StaticLog'
artifact = 'staticlog'
libraryDescription = 'Super lightweight static logging for Kotlin, Java and Android.'
siteUrl = 'https://github.com/jupf/staticlog'
gitUrl = 'https://github.com/jupf/staticlog.git'
developerId = 'jupf'
developerName = 'Julian Pfeifer'
developerEmail = 'julian.pfeifer.88@gmail.com'
licenseName = 'The MIT License (MIT)'
licenseUrl = 'https://opensource.org/licenses/MIT'
allLicenses = ["MIT"]
}
apply from: 'tasks.gradle'
apply from: 'publish.gradle'
apply from: 'bintray.gradle'