diff --git a/build.gradle.kts b/build.gradle.kts index 536f94f..a728808 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,15 @@ version = "0.1.0+s34k-0.1.0" repositories { // mavenLocal() mavenCentral() -} + + maven { + name = "GitHubPackages" + url = uri("https://maven.pkg.github.com/veupathdb/packages") + credentials { + username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_USERNAME") + password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN") + } + }} java { sourceCompatibility = JavaVersion.VERSION_1_8 diff --git a/readme.adoc b/readme.adoc index 1d3dce1..c4cf975 100644 --- a/readme.adoc +++ b/readme.adoc @@ -3,4 +3,11 @@ image:https://img.shields.io/badge/jvm-1.8-blue[title="Compatible with JVM 1.8"] Basic/abstract implementation of the https://github.com/VEuPathDB/lib-s34k[S34K API] providing -base/generic functionality that may be used by specific API implementations. \ No newline at end of file +base/generic functionality that may be used by specific API implementations. + +.Versioning +NOTE: The versioning pattern for this project follows this pattern: + `{core-version}+s34k-{api-version}`. + + For example, the initial release of this library was `0.1.0+s34k-0.1.0`. + + As patches or updates happen to this library, the library version number will + differ from the API version, so for clarity, the API version will be included. \ No newline at end of file