Skip to content

Commit fcd5b40

Browse files
committed
Merge branch 'bintray'
2 parents 87bafd3 + cf39096 commit fcd5b40

File tree

3 files changed

+31
-14
lines changed

3 files changed

+31
-14
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Ian Moore
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22

33
group = "org.yttr"
4-
version = "0.0.1"
4+
version = "0.1.0"
55

66
plugins {
77
id("tanvd.kosogor") version "1.0.10" apply true
@@ -14,7 +14,6 @@ subprojects {
1414
plugin("kotlin")
1515
plugin("tanvd.kosogor")
1616
plugin("io.gitlab.arturbosch.detekt")
17-
plugin("maven-publish")
1817
}
1918

2019
repositories {

koncorda/build.gradle.kts

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,15 @@ dependencies {
1212
}
1313

1414
publishJar {
15-
enablePublication = true
16-
}
17-
18-
publishing {
19-
repositories {
20-
maven {
21-
name = "GitHubPackages"
22-
url = uri("https://maven.pkg.github.com/yttrian/koncorda")
23-
credentials {
24-
username = System.getenv("GITHUB_ACTOR")
25-
password = System.getenv("GITHUB_TOKEN")
26-
}
15+
bintray {
16+
username = "yttrian"
17+
repository = "koncorda"
18+
info {
19+
description = "Easy to use DSL wrapping JDA"
20+
githubRepo = "https://github.com/yttrian/koncorda"
21+
vcsUrl = githubRepo
22+
license = "MIT"
23+
labels.addAll(listOf("kotlin", "kotlin-dsl", "discord", "jda"))
2724
}
2825
}
2926
}

0 commit comments

Comments
 (0)