Commit c7004263 authored by Gabriele Civitarese's avatar Gabriele Civitarese

Fixed problem for maven compilation

parent 1cbafbaf
......@@ -8,6 +8,9 @@
<artifactId>grpchelloserver</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>io.grpc</groupId>
......@@ -62,6 +65,8 @@
</dependency>
</dependencies>
<build>
<extensions>
<extension>
......@@ -71,6 +76,16 @@
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
......@@ -92,4 +107,4 @@
</plugins>
</build>
</project>
\ No newline at end of file
</project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment