Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.02 KB

EXTENSION_README.md

File metadata and controls

47 lines (33 loc) · 1.02 KB

##REPO_NAME##

##REPO_DESCRIPTION##

Install

First, add the extension package registry to your gradle repositories:

repositories {
    maven {
        name = "GitHubExtensionRepo"
        url = uri("https://maven.pkg.github.com/##REPO_USER##/##REPO_NAME##/")
        credentials {
            username = System.getenv("GITHUB_ACTOR") == null ? GITHUB_ACTOR : System.getenv("GITHUB_ACTOR")
            password = System.getenv("GITHUB_TOKEN") == null ? GITHUB_TOKEN : System.getenv("GITHUB_TOKEN")
        }
    }
}

Next, add the extension to the project dependency list:

dependencies {
    // ...
    implementation '##GROUP_ID##:##ARTIFACT_ID##:0.1.0'
    // ...
}

And synchronize gradle.

Finished!

Usage

Coming soon 😉

Contributing

For the documentation on contributing to this repository, please take a look at the Contributing Guidelines.

About

This is part of Telestion, a project by WüSpace e.V..