forked from gregwhitaker/gradle-flatbuffers-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (46 loc) · 1.18 KB
/
build.gradle
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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.7"
}
}
plugins {
id 'com.gradle.build-scan' version '1.9'
}
buildScan {
licenseAgreementUrl = 'https://gradle.com/terms-of-service'
licenseAgree = 'yes'
publishAlways()
}
apply plugin: 'java-gradle-plugin'
apply plugin: 'com.gradle.plugin-publish'
apply plugin: 'groovy'
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
testCompile gradleTestKit()
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
}
version = '1.0.3'
group = 'io.netifi'
pluginBundle {
website = 'https://github.com/netifi/gradle-flatbuffers-plugin'
vcsUrl = 'https://github.com/netifi/gradle-flatbuffers-plugin'
description = 'Gradle plugin for generating code from Google FlatBuffers schemas.'
tags = [ 'serialization', 'build', 'codegen' ]
plugins {
flatBuffersPlugin {
id = 'io.netifi.flatbuffers'
displayName = 'io.netifi.flatbuffers'
}
}
}