-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
60 lines (51 loc) · 1.23 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
buildscript {
ext.kotlinVersion = '1.5.0'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'io.michaelrocks.pablo:pablo:1.2.0'
}
}
apply plugin: 'kotlin'
apply plugin: 'io.michaelrocks.pablo'
group 'io.michaelrocks.bimap'
version '1.1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
test {
useJUnitPlatform()
}
pablo {
artifactName = 'bimap'
pom {
name = 'BiMap'
description = 'A bi-directional map implementation in Kotlin.'
inceptionYear = '2016'
url = 'https://github.com/michaelrocks/bimap'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
developers {
developer {
id = 'MichaelRocks'
name = 'Michael Rozumyanskiy'
email = 'michael.rozumyanskiy@gmail.com'
}
}
scm {
connection = 'scm:git:git://github.com/michaelrocks/bimap.git'
developerConnection = 'scm:git:ssh://git@github.com/michaelrocks/bimap.git'
url = 'https://github.com/michaelrocks/bimap'
}
}
}