-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle.kts
45 lines (38 loc) · 1.14 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
`kotlin-dsl`
`java-gradle-plugin`
`maven-publish`
id("com.gradle.plugin-publish") version "1.3.0"
}
group = "us.ihmc"
version = "1.1.0"
repositories {
maven { url = uri("https://plugins.gradle.org/m2/") } // needed for included plugins
}
dependencies {
api("ca.cutterslade.gradle:gradle-dependency-analyze:1.8.3") {
exclude("junit", "junit")
}
api("com.dorongold.plugins:task-tree:4.0.0")
api("guru.nidi:graphviz-kotlin:0.18.1")
api("com.hierynomus:sshj:0.38.0")
api("org.junit.platform:junit-platform-launcher:1.10.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
}
tasks.withType<Test> {
useJUnitPlatform()
}
val pluginVcsUrl = "https://github.com/ihmcrobotics/ihmc-build"
gradlePlugin {
website.set(pluginVcsUrl)
vcsUrl.set(pluginVcsUrl)
plugins {
create(project.name) {
id = project.group as String + "." + project.name
implementationClass = "us.ihmc.build.IHMCBuildPlugin"
displayName = "IHMC Build Plugin"
description = "IHMC Robotics opinions on Java builds."
tags.set(listOf("build", "ihmc", "robotics"))
}
}
}