Skip to content

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Oct 7, 2021
1 parent 09d7d20 commit 7c88a46
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Repository for testing build from jitpack.io
## Version Release
This Is Latest Release

$version_release = 1.0.2
$version_release = 1.0.3

What's New??

Expand All @@ -30,8 +30,14 @@ What's New??

### Step 2. Add the dependency (build.gradle : Module)

### For build.gradle (Groovy)
dependencies {
implementation 'com.github.amirisback:sample-kotlin-library:1.0.2'
implementation 'com.github.amirisback:sample-kotlin-library:1.0.3'
}

### For build.gradle.kts (Kotlin DSL)
dependencies {
implementation("com.github.amirisback:sample-kotlin-library:1.0.3")
}


Expand Down
14 changes: 12 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
group = "com.frogobox"

/** Artifact version. Note that "SNAPSHOT" in the version is not supported by bintray. */
version = "1.0.2"
version = "1.0.3"

/** This is from settings.gradle.kts. */
val myArtifactId: String = rootProject.name
Expand Down Expand Up @@ -43,6 +43,7 @@ repositories {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(compose.desktop.currentOs)
}

Expand Down Expand Up @@ -120,9 +121,18 @@ publishing {
}

repositories {

maven {
maven { url = uri("https://jitpack.io") }
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/${myGithubUsername}/${myArtifactId}")
credentials {
username = System.getenv("GITHUB_PACKAGES_USERID")
password = System.getenv("GITHUB_PACKAGES_PUBLISH_TOKEN")
}
}

maven { url = uri("https://jitpack.io") }

}

}

0 comments on commit 7c88a46

Please sign in to comment.