Skip to content

bamlab/kotlin-open-source-template

Repository files navigation

How to use this template repo

  • Replace PROJECT_NAM and PROJECT_DESCRIPTION with a find and replace command.
  • Replace otlin-open-source-template with a find and replace command.
  • Replace mylib with a find and replace command.
  • Replace mylib folders.

Features

  • Continuous-on-demand integration and deployment to maven repository.
  • Documentation (with versionning) website.

PROJECT_NAME

JVM Release

Continuous Deployment

Install

Maven Central

implementation("tech.bam.PROJECT_NAME:PROJECT_NAME:VERSION")

Snapshot releases

repositories {
    maven { url "https://oss.sonatype.org/content/repositories/snapshots" } // Add this line
}
// ...

implementation("tech.bam.PROJECT_NAME:PROJECT_NAME:VERSION-SNAPSHOT")

Usage