-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
81 lines (66 loc) · 1.83 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
72
73
74
75
76
77
78
79
80
81
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
plugins {
id 'java-library'
id 'jacoco'
id 'org.jetbrains.kotlin.jvm' version '1.3.41'
}
group 'io.github.the724'
version '1.1.0'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin/'
test.java.srcDirs += 'src/test/kotlin/'
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
ext
{
bintrayRepo = 'maven'
bintrayName = 'iramount'
orgName = 'farhad'
publishedGroupId = 'io.github.the724'
artifact = 'iramount'
libraryVersion = '1.1.0'
libraryName = 'iramount'
libraryDescription = 'digit grouping and conversion to formal spoken format for Farsi numbers'
siteUrl = 'https://github.com/724/iramount'
gitUrl = 'https://github.com/the724/iramount.git'
developerId = 'farhad'
developerName = 'Farhad Faghihi'
developerEmail = '[email protected]'
licenseName = 'GNU General Public License v3.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["GPL-3.0"]
}
apply from: rootProject.file('gradle/install.gradle')
apply from: rootProject.file('gradle/bintray-java.gradle')