Skip to content

Latest commit

 

History

History
 
 

java

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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