-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (26 loc) · 813 Bytes
/
build.gradle
File metadata and controls
30 lines (26 loc) · 813 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
25
26
27
28
29
30
plugins {
id 'com.gradle.plugin-publish' version '1.2.1'
}
gradlePlugin {
website = 'https://github.com/MoSadie/GradleVendorJSON'
vcsUrl = 'https://github.com/MoSadie/GradleVendorJSON'
plugins {
vendorJSONPlugin {
id = 'io.github.mosadie.vendorJSON'
implementationClass = 'io.github.mosadie.gradlevendorjson.GradleVendorJSONPlugin'
displayName = 'FRC Vendor JSON'
description = 'Helps create/update vendor json files for distrubution to FRC teams.'
tags.set(['frc', 'json', 'vendor'])
}
}
}
repositories {
jcenter();
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.5'
}
// Unless overridden in the pluginBundle config DSL, the project version will
// be used as your plugin version when publishing
version = "1.1"
group = "io.github.mosadie"