Skip to content

Commit

Permalink
chore: remove config to publish GitHub package #12
Browse files Browse the repository at this point in the history
  • Loading branch information
HoucemKacem authored Mar 31, 2021
1 parent 273b25a commit 8184ce5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 38 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/publish.yml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# kngsild
The library is published with Jitpack and available in https://jitpack.io/#stellio-hub/kngsild.
22 changes: 1 addition & 21 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {

kotlin("kapt") version "1.4.31"
`java-library`
`maven-publish`
}

repositories {
Expand All @@ -33,7 +32,7 @@ dependencies {
testImplementation("org.mockito:mockito-inline:3.8.0")
}

version = "0.1.2"
version = "0.1.3"
group = "io.egm.kngsild"

tasks.jar {
Expand Down Expand Up @@ -62,25 +61,6 @@ java {
withSourcesJar()
}

publishing {
publications {
create<MavenPublication>("kngsild") {
from(components["java"])
}
}

repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/stellio-hub/kngsild")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}

detekt {
toolVersion = "1.16.0"
input = files("src/main/kotlin", "src/test/kotlin")
Expand Down

0 comments on commit 8184ce5

Please sign in to comment.