This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
generated from Kotlin-Discord/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
87 lines (69 loc) · 2.04 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
82
83
84
85
86
87
buildscript {
repositories {
maven {
name = 'KotDis'
url = 'https://maven.kotlindiscord.com/repository/maven-public/'
}
}
}
plugins {
id 'maven-publish'
id 'com.github.jakemarsden.git-hooks' version '0.0.1'
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'io.gitlab.arturbosch.detekt' version '1.8.0'
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.4.10'
}
group 'com.kotlindiscord.api'
version '1.1-SNAPSHOT'
repositories {
maven {
name = 'KotDis'
url = 'https://maven.kotlindiscord.com/repository/maven-public/'
}
}
def ktor_version = "1.4.3"
dependencies {
api "io.ktor:ktor-client-core:$ktor_version"
api "io.ktor:ktor-client-cio:$ktor_version"
api "io.ktor:ktor-client-json-jvm:$ktor_version"
api "io.ktor:ktor-client-serialization-jvm:$ktor_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect"
api "org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1"
implementation 'io.github.microutils:kotlin-logging:1.7.9'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
detekt {
buildUponDefaultConfig = true
config = files("detekt.yml")
}
gitHooks {
hooks = ['pre-commit': 'detekt']
}
publishing {
repositories {
maven {
name = "KotDis"
url = uri("https://maven.kotlindiscord.com/repository/maven-snapshots/")
credentials {
username = project.findProperty("kotdis.user") ?: System.getenv("KOTLIN_DISCORD_USER")
password = project.findProperty("kotdis.password") ?: System.getenv("KOTLIN_DISCORD_PASSWORD")
}
version = project.version
}
}
publications {
maven(MavenPublication) {
from(components.java)
artifacts {
kotlinSourcesJar
}
}
}
}