Skip to content

Commit

Permalink
Merge pull request #39 from simon04/fix-java-build
Browse files Browse the repository at this point in the history
Fix Java build
  • Loading branch information
joto authored Sep 28, 2020
2 parents 9823930 + 87d7739 commit 3cd7106
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down Expand Up @@ -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>

0 comments on commit 3cd7106

Please sign in to comment.