Giter Site home page Giter Site logo

warriorzz / github-api-wrapper Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nycodeghg/github-api-wrapper

0.0 0.0 0.0 788 KB

Kotlin Wrapper for the GitHub REST API.

Home Page: https://nycodeghg.github.io/github-api-wrapper/

License: Apache License 2.0

Kotlin 100.00%

github-api-wrapper's Introduction

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>

github-api-wrapper's People

Contributors

dependabot[bot] avatar drschlaubi avatar emmaboecker avatar niggelgame avatar nycodeghg avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.