-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (20 loc) · 669 Bytes
/
build.gradle
File metadata and controls
24 lines (20 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
plugins {
id 'java-library'
id 'java-gradle-plugin'
}
group = 'dev.lukebemish'
gradlePlugin {
website = "https://github.com/lukebemishprojects/ExtendedJavaConventions/"
vcsUrl = "https://github.com/lukebemishprojects/ExtendedJavaConventions.git"
plugins {
extendedJavaConventions {
id = 'dev.lukebemish.extended-java-conventions'
displayName = 'ExtendedJavaConventions'
description = 'Tool to set up development environments for Minecraft mods'
implementationClass = 'dev.lukebemish.extendedjavaconventions.ExtendedJavaConventionsPlugin'
}
}
}
dependencies {
gradleApi()
}