Skip to content

Commit

Permalink
build/readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Apr 28, 2022
1 parent 856f306 commit 92eb3e6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 8 additions & 1 deletion readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.

0 comments on commit 92eb3e6

Please sign in to comment.