Merge pull request #42 from simon04/maven-warnings

Fix Maven warnings
This commit is contained in:
Jochen Topf 2020-10-02 10:03:34 +02:00 committed by GitHub
commit ab88d6867a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,10 @@
<connection>https://github.com/scrosby/OSM-binary.git</connection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>${basedir}/src.java</sourceDirectory>
<outputDirectory>${basedir}/build</outputDirectory>
@ -32,6 +36,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
@ -42,6 +47,9 @@
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocExecutable>protoc</protocExecutable>
</configuration>
<executions>
<execution>
<id>generate-sources</id>