revanced-integrations/build.gradle

34 lines
897 B
Groovy
Raw Normal View History

2020-08-24 17:47:57 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
2021-07-19 16:44:33 +02:00
mavenCentral()
2020-08-24 17:47:57 +02:00
}
dependencies {
2022-08-22 04:58:14 +02:00
classpath 'com.android.tools.build:gradle:7.2.1'
2022-07-05 22:02:27 +02:00
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
2020-08-24 17:47:57 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2020-08-24 17:47:57 +02:00
}
allprojects {
repositories {
google()
2022-08-22 04:58:14 +02:00
maven { url 'https://jitpack.io' }
2021-07-19 16:44:33 +02:00
mavenCentral()
2020-08-24 17:47:57 +02:00
}
}
2022-07-02 13:35:37 +02:00
// Tracking issue https://github.com/semantic-release/semantic-release/issues/963
task publish(type: DefaultTask) {
group = 'publish'
description = 'Dummy publish to pass the verification phase of the gradle-semantic-release-plugin'
}
2020-08-24 17:47:57 +02:00
task clean(type: Delete) {
delete rootProject.buildDir
}