Merge pull request #39 from simon04/fix-java-build

Fix Java build
This commit is contained in:
Jochen Topf 2020-09-28 17:27:41 +02:00 committed by GitHub
commit 3cd71060e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 6 deletions

14
pom.xml
View File

@ -6,7 +6,7 @@
<groupId>crosby.binary</groupId>
<artifactId>osmpbf</artifactId>
<packaging>jar</packaging>
<version>1.3.3</version>
<version>1.4.0</version>
<name>OSM-Binary</name>
<description>Library for the OpenStreetMap PBF format</description>
<url>https://github.com/scrosby/OSM-binary</url>
@ -33,19 +33,21 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>com.google.protobuf.tools</groupId>
<artifactId>maven-protoc-plugin</artifactId>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<executions>
<execution>
<id>generate-sources</id>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
@ -78,7 +80,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.4.1</version>
<version>3.13.0</version>
</dependency>
</dependencies>
</project>