ScalaBuff
ScalaBuff copied to clipboard
the scala protocol buffers (protobuf) compiler
I can [download](https://oss.sonatype.org/#nexus-search;quick~scalabuff) the jar or build it myself with `sbt package`. However, running it as `java -jar scalabuff-compile_VERSION.jar` gives me this error: ``` java Error: A JNI error has...
Related to https://github.com/SandroGrzicic/ScalaBuff/issues/80
Currently there is no check to make sure that all required fields have values when deserializing a message. This PR adds the option to enable strict required field. Strict means...
I'm trying to use scalabuf to generate scala code from protofiles, but I'm having trouble getting it to even run. I'm using scala 2.10.3, sbt 0.13.1, and java 1.7.0_21 after...
i understand how to make .proto -> .scala but my .scala file depends on some libraries so i can't make .class file to include it in my project any suggestions???(plz...
I tried to use ScalaBuff with Apache Spark. when I use scala classes on my project I get this error NoClassDefFoundError: net/sandrogrzicic/scalabuff/Message SBT: name := "untitled1" version := "1.0" scalaVersion...
Example: enum_to_import.proto: ``` package resources.generated.nested; enum AnEnumToImport { KEYBOARD = 1; MOUSE = 2; } ``` import_enum.proto: ``` package resources.generated; import "enum_to_import.proto"; message AnImportEnumMessage { required resources.generated.nested.AnEnumToImport to_import = 1;...
In version 1.4.0, importing from another package doesn't work anymore if java_package is undefined in the imported file. java_package should default to proto package according to spec. I have also...
Example: to-import.proto: ``` package to.import; message ToImport { required int32 required_field = 1; } ``` importer.proto ``` package importer; import "to-import.proto"; message Importer { required ToImport required_field = 1; }...