Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 857 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 857 Bytes

To-do

Java

  • checkstyles
  • spotbugs
  • android api level linting
  • javadoc
  • cobertura

Using the abstractions

  1. In build.gradle in the repositories section:

    maven {
        url = uri("https://maven.pkg.github.com/microsoft/kiota")
        credentials {
            username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
            password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
        }
    }
  2. In build.gradle in the dependencies section:

    api 'com.microsoft.kiota:kiota-abstractions:1.0.1'
  3. In gradle.properties next to the build.gradle file:

    gpr.user = your github username
    gpr.key = your PAT