-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (46 loc) · 1.85 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript {
apply from: rootProject.file("gradle/versions.gradle")
}
plugins {
id 'java-gradle-plugin'
id 'org.jetbrains.kotlin.jvm' version '1.5.30'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.14.0'
}
group 'com.microsoft.identity'
version '0.3.0'
pluginBundle {
website = 'https://github.com/azuread'
vcsUrl = 'https://github.com/azuread/android-complete'
tags = ['build']
}
gradlePlugin {
plugins {
buildPlugin {
id = 'com.microsoft.identity.buildsystem'
implementationClass = 'com.microsoft.identity.buildsystem.BuildPlugin'
displayName = "AuthClient Android Build Plugin"
description = "Gradle plugin to encapsulate custom build tasks and configuration for AuthClient android projects."
}
}
}
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${rootProject.ext.jupiterApiVersion}"
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
implementation "com.android.tools.build:gradle:${rootProject.ext.gradleVersion}"
implementation "gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:${rootProject.ext.spotBugsGradlePluginVersion}"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${rootProject.ext.kotlinVersion}"
testImplementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${rootProject.ext.kotlinVersion}"
testImplementation "org.jetbrains.kotlin:kotlin-test:${rootProject.ext.kotlinVersion}"
compileOnly "org.projectlombok:lombok:$rootProject.ext.lombokVersion"
annotationProcessor "org.projectlombok:lombok:$rootProject.ext.lombokVersion"
implementation "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
}
test {
useJUnitPlatform()
}