Merge pull request #92 from openstreetmap/upgrade-protobuf
Upgrade Java's protobuf to 4.33.2
This commit is contained in:
commit
7c3f68f622
|
|
@ -1,5 +1,9 @@
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## Release notes for 1.6.1 (2025-12-20)
|
||||||
|
|
||||||
|
- Java: Update to latest protoc and protobuf runtime versions [#92](https://github.com/openstreetmap/OSM-binary/pull/92)
|
||||||
|
|
||||||
## Release notes for 1.6.0 (2024-12-10)
|
## Release notes for 1.6.0 (2024-12-10)
|
||||||
|
|
||||||
- Java: Update to latest protoc and protobuf runtime versions [#84](https://github.com/openstreetmap/OSM-binary/pull/84)
|
- Java: Update to latest protoc and protobuf runtime versions [#84](https://github.com/openstreetmap/OSM-binary/pull/84)
|
||||||
|
|
|
||||||
|
|
@ -21,16 +21,17 @@ something more complete see [libosmium](https://osmcode.org/libosmium/).
|
||||||
|
|
||||||
### Building with Maven
|
### Building with Maven
|
||||||
|
|
||||||
We publish the Java library to [Maven Central](https://search.maven.org/):
|
We publish the Java library to [Maven Central](https://mvnrepository.com/artifact/org.openstreetmap.pbf/osmpbf): 
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.openstreetmap.pbf</groupId>
|
<groupId>org.openstreetmap.pbf</groupId>
|
||||||
<artifactId>osmpbf</artifactId>
|
<artifactId>osmpbf</artifactId>
|
||||||
<version>1.5.0</version>
|
<version>${LATEST_VERSION}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
To build the Java library run:
|
To build the Java library run:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
|
||||||
11
pom.xml
11
pom.xml
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<protobuf.version>4.28.3</protobuf.version>
|
<protobuf.version>4.33.2</protobuf.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
@ -139,20 +139,13 @@
|
||||||
<version>0.6.0</version>
|
<version>0.6.0</version>
|
||||||
<extensions>true</extensions>
|
<extensions>true</extensions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<publishingServerId>central-lenni</publishingServerId>
|
<publishingServerId>central</publishingServerId>
|
||||||
<autoPublish>true</autoPublish>
|
<autoPublish>true</autoPublish>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>dtrott</id>
|
|
||||||
<url>http://maven.davidtrott.com/repository</url>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue