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:
2015-03-16 20:12:56 +00:00
commit 6cb5db6c10
10 changed files with 439 additions and 0 deletions

29
build.gradle Normal file
View 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'
}