8000 GitHub - warriorzz/github-api-wrapper: Kotlin Wrapper for the GitHub REST API.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

warriorzz/github-api-wrapper

 
 

Repository files navigation

GitHub API Wrapper

Gradle CI GitHub ktlint Kotlin Multiplatform

This is a Kotlin wrapper for the GitHub REST API v3.

Note: This library is in a very early stage. The GitHub API is very big, so contributions are welcome.

Snapshots

Snapshots are available on Sonatype Snapshots.

Gradle Kotlin
repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}

dependencies {
    // Use the modules you need
    implementation(platform("dev.nycode.github:bom:1.0.0-SNAPSHOT"))
    implementation("dev.nycode.github:core")
    implementation("dev.nycode.github:repositories")
    implementation("dev.nycode.github:branches")
}
Gradle Groovy
repositories {
    maven {
        url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
    }
}

dependencies {
    // Use the modules you need
    implementation platform('dev.nycode.github:bom:1.0.0-SNAPSHOT')
    implementation 'dev.nycode.github:core'
    implementation 'dev.nycode.github:repositories'
    implementation 'dev.nycode.github:branches'
}
Maven
<repositories>
    <repository>
        <id>sonatype-01</id>
        <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    </repository>
</repositories>

<dependencyManagement>
<dependencies>
    <dependency>
        <groupId>dev.nycode.github</groupId>
        <artifactId>bom</artifactId>
        <version>1.0.0-SNAPSHOT</version>
        <type>pom</type>
        <scope>import</scope>
    </dependency>
</dependencies>
</dependencyManagement>

<dependencies>
    <!-- Use the modules you need -->
    <dependency>
        <groupId>dev.nycode.github</groupId>
        <artifactId>core</artifactId>
    </dependency>
    <dependency>
        <groupId>dev.nycode.github</groupId>
        <artifactId>repositories</artifactId>
    </dependency>
    <dependency>
        <groupId>dev.nycode.github</groupId>
        <artifactId>branches</artifactId>
    </dependency>
</dependencies>

About

Kotlin Wrapper for the GitHub REST API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Kotlin 100.0%
0