- checkstyles
- spotbugs
- android api level linting
- javadoc
- cobertura
-
In
build.gradle
in therepositories
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") } }
-
In
build.gradle
in thedependencies
section:api 'com.microsoft.kiota:kiota-abstractions:1.0.1'
-
In
gradle.properties
next to thebuild.gradle
file:gpr.user = your github username gpr.key = your PAT