-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (52 loc) · 1.23 KB
/
build.gradle
File metadata and controls
63 lines (52 loc) · 1.23 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
id "com.github.mxenabled.coppuccino" version "6.+"
id "com.github.mxenabled.vogue" version "3.+"
id "groovy"
id "java-gradle-plugin"
id "maven-publish"
id "org.jetbrains.kotlin.jvm" version "2.1.0"
}
group "com.mx.binks"
version "3.0.3" // x-release-please-version
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
kotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_17
}
}
coppuccino {
kotlin { enabled = true }
}
repositories {
mavenCentral()
mavenLocal()
gradlePluginPortal()
maven { url "https://jitpack.io" }
}
dependencies {
implementation "com.lordcodes.turtle:turtle:0.7.0" // Provides git and commandline interaction API
testImplementation "org.mockito:mockito-inline:[5.0,6.0)"
testImplementation "org.spockframework:spock-core:2.4-M6-groovy-3.0"
}
test { useJUnitPlatform() }
gradlePlugin {
plugins {
binksPlugin {
id = group
implementationClass = "com.mx.binks.BinksPlugin"
}
binksJitPackPlugin {
id = "com.github.mxenabled.binks"
implementationClass = "com.mx.binks.BinksPlugin"
}
}
}
wrapper {
gradleVersion = "7.6.4"
distributionType = Wrapper.DistributionType.ALL
}