-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.33 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
id 'org.kordamp.gradle.java-project' version '0.43.0'
id 'org.kordamp.gradle.bintray' version '0.43.0'
}
group 'eu.szkolny'
version '1.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
config {
release = (rootProject.findProperty('release') ?: false).toBoolean()
info {
name = rootProject.name
description = 'A hacky solution to the difficulties of generating an X.509 certificate on JVM/Android.'
vendor = 'Szkolny.eu'
links {
website = 'https://github.com/szkolny-eu/x509-generator'
issueTracker = 'https://github.com/szkolny-eu/x509-generator/issues'
scm = 'https://github.com/szkolny-eu/x509-generator.git'
}
}
licensing {
enabled = false
}
bintray {
enabled = config.release
credentials {
username = System.getenv('BINTRAY_USER')
password = System.getenv('BINTRAY_KEY')
}
userOrg = 'szkolny-eu'
repo = 'szkolny-eu'
name = rootProject.name
githubRepo = 'szkolny-eu/x509-generator'
}
}