-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (31 loc) · 820 Bytes
/
Copy pathbuild.gradle
File metadata and controls
37 lines (31 loc) · 820 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
31
32
33
34
35
36
37
group 'Copter'
version '1.0'
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.1'
}
}
apply plugin: 'java'
apply plugin: 'application'
mainClassName = "Main"
run {
if (project.hasProperty("arg")) {
args (arg.split(' '))
}
standardInput System.in
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.2.0'
compile group: 'com.martiansoftware', name: 'jsap', version: '2.1'
compile group: 'com.pi4j', name: 'pi4j-core', version: '1.1'
compile group: 'io.netty', name: 'netty-all', version: '4.1.8.Final'
}