-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (39 loc) · 1 KB
/
build.gradle
File metadata and controls
46 lines (39 loc) · 1 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = '1.7.10'
ext.minSdkVersion = 16
ext.targetSdkVersion = 30
ext.compileSdkVersion = 30
ext.appCompatVersion = '1.3.0'
ext.exifInterfaceVersion = '1.3.3'
ext.constraintlayoutVersion = '2.1.4'
ext.jUnitVersion = '4.13.2'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}
allprojects {
repositories {
google()
mavenCentral()
}
tasks.withType(Javadoc) {
enabled = false
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "${rootDir}/scripts/publish-root.gradle"
ext {
PUBLISH_GROUP_ID = 'io.github.imablanco'
PUBLISH_VERSION = '1.0.1'
}