-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (54 loc) · 1.31 KB
/
build.gradle
File metadata and controls
64 lines (54 loc) · 1.31 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
64
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
id "com.github.mxenabled.coppuccino" version "5.+"
id "com.github.mxenabled.vogue" version "2.+"
id "groovy"
id "java"
id "maven-publish"
id "java-gradle-plugin"
id "org.jetbrains.kotlin.jvm" version "2.1.0"
}
group "com.mx.binks"
version "3.0.0"
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
mavenLocal()
gradlePluginPortal()
maven { url "https://jitpack.io" }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "com.lordcodes.turtle:turtle:0.7.0" // Provides git and commandline interaction API
// Unit tests
testImplementation "org.mockito:mockito-inline:[5.0,6.0)"
testImplementation "org.spockframework:spock-core:2.4-M6-groovy-3.0"
}
gradlePlugin {
plugins {
binksPlugin {
id = group
implementationClass = "com.mx.binks.BinksPlugin"
}
binksJitPackPlugin {
id = "com.github.mxenabled.binks"
implementationClass = "com.mx.binks.BinksPlugin"
}
}
}
kotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_17
}
}
coppuccino {
kotlin {
enabled = true
}
}
test { useJUnitPlatform() }
wrapper {
gradleVersion = "7.6.4"
distributionType = Wrapper.DistributionType.ALL
}