Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
#38 Fixed the integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-ivanov committed Sep 15, 2015
1 parent 52f6571 commit 27f5cd1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/it/TEST-26/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

<name>Integration Test 26</name>

<properties>
<protobufVersion>3.0.0-alpha-3</protobufVersion>
</properties>

<build>
<extensions>
<extension>
Expand All @@ -37,8 +41,9 @@
<goal>compile-javanano</goal>
</goals>
<configuration>
<protocArtifact>com.google.protobuf:protoc:2.6.1:exe:${os.detected.classifier}
<protocArtifact>com.google.protobuf:protoc:${protobufVersion}:exe:${os.detected.classifier}
</protocArtifact>
<javaNanoOptions>parcelable_messages=true</javaNanoOptions>
</configuration>
</execution>
</executions>
Expand Down
3 changes: 2 additions & 1 deletion src/it/TEST-26/src/main/proto/test.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
syntax = "proto3";

option java_package = "test";
option java_outer_classname = "TestProtos";
option parcelable_messages = true;

message TestMessage {
}

0 comments on commit 27f5cd1

Please sign in to comment.