forked from mockito/mockito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
31 lines (24 loc) · 899 Bytes
/
build.gradle.kts
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
buildscript {
repositories {
mavenLocal() //for local testing of mockito-release-tools
google()
gradlePluginPortal()
}
dependencies {
classpath("gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1")
classpath("io.github.gradle-nexus:publish-plugin:2.0.0-rc-1")
classpath("org.shipkit:shipkit-changelog:2.0.1")
classpath("org.shipkit:shipkit-auto-version:2.1.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24")
}
}
plugins {
id("eclipse")
id("com.github.ben-manes.versions") version "0.51.0"
// Top-level android plugin declaration required for :mockito-integration-tests:android-tests to work
alias(libs.plugins.android.application) apply false
}
apply {
from(rootProject.file("gradle/shipkit.gradle"))
from(rootProject.file("gradle/license.gradle"))
}