Inital test (from beerduino, https://github.com/ilyevsky/beerduino) to establish protocol buffer communication between java and arduino powered by purejavacomm (https://github.com/nyholku/purejavacomm).
This commit is contained in:
29
build.gradle
Normal file
29
build.gradle
Normal file
@@ -0,0 +1,29 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'protobuf'
|
||||
|
||||
task wrapper(type: Wrapper) {
|
||||
gradleVersion = '2.2'
|
||||
}
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.andrewkroh.gradle:gradle-protobuf-plugin:0.4.0'
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url 'http://www.sparetimelabs.com/maven2/'
|
||||
}
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'org.msgpack:msgpack:0.6.11'
|
||||
compile 'com.sparetimelabs:purejavacomm:0.0.22'
|
||||
}
|
||||
Reference in New Issue
Block a user