Skip to content

Commit

Permalink
Fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
2m committed Apr 10, 2018
1 parent cf62be9 commit 65271c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions plugin-tester-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@ enablePlugins(AkkaGrpcPlugin)

javaAgents += "org.mortbay.jetty.alpn" % "jetty-alpn-agent" % "2.0.7" % "runtime"

inConfig(Compile)(Seq(
akkaGrpcCodeGenerators := GeneratorAndSettings(ScalaBothCodeGenerator, (akkaGrpcCodeGeneratorSettings in Compile).value) :: Nil
))

val root = project.in(file("."))
.dependsOn(
ProjectRef(file("../"), "akka-grpc-runtime"),
ProjectRef(file("../"), "akka-grpc-codegen"),
)
.settings(

)

val grpcVersion = "1.11.0"

// for loading of cert, issue #89
libraryDependencies += "io.grpc" % "grpc-testing" % grpcVersion

(akkaGrpcCodeGenerators in Compile) := Seq(GeneratorAndSettings(ScalaBothCodeGenerator, (akkaGrpcCodeGeneratorSettings in Compile).value))
2 changes: 1 addition & 1 deletion plugin-tester-scala/src/main/protobuf/helloworld.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";

option java_multiple_files = true;
option java_package = "io.grpc.examples";
option java_package = "io.grpc.examples.helloworld";
option java_outer_classname = "HelloWorldProto";

package helloworld;
Expand Down

0 comments on commit 65271c7

Please sign in to comment.