-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
38 lines (32 loc) · 933 Bytes
/
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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.9"
}
}
apply plugin: 'groovy'
apply plugin: 'com.gradle.plugin-publish'
apply from: "$rootProject.projectDir/gradle/scripts/publish.gradle"
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
}
pluginBundle {
website = 'https://github.com/bdeneuter/mindstorms-plugin'
vcsUrl = 'https://github.com/bdeneuter/mindstorms-plugin.git'
description = 'A gradle plugin for building, deploying and running Java applications on the Lego Mindstorms EV3 brick with LeJOS installed.'
tags = ['Lego', 'mindstorms', 'LeJOS']
plugins {
ev3 {
id = 'com.github.bdeneuter.mindstorms.ev3'
displayName = 'Lego Mindstorms EV3 plugin'
}
}
}