forked from MobileUpLLC/CodeQuality-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 1012 Bytes
/
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
buildscript {
ext.kotlinVersion = '1.4.31'
ext.nexusStagingVersion = '0.22.0'
ext.dokkaVersion = '1.4.20'
repositories {
google()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:$nexusStagingVersion"
classpath("org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion")
}
}
apply plugin: 'kotlin'
apply plugin: 'java-gradle-plugin'
apply plugin: 'io.codearte.nexus-staging'
apply plugin: 'org.jetbrains.dokka'
repositories {
google()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
implementation 'com.google.code.gson:gson:2.8.6'
}
gradlePlugin {
plugins {
simplePlugin {
id = 'ru.mobileup.code-quality-android'
implementationClass = 'ru.mobileup.codequality.CodeQualityPlugin'
}
}
}
apply from: 'publish.gradle'