Dirk Mueller
c26ad7953f
* Fix packed reflection handling bug in edition 2023. * Mute the minor version warning * Populate Kotlin Manifest Files * Re-export includingDefaultValueFields in deprecated state for important Cloud customer. (https://github.com/protocolbuffers /protobuf/commit/3b62d78dc70d2b43af5998d427452246279363c7) * Cherrypick restoration of mutableCopy helpers (https://github .com/protocolbuffers/protobuf/commit/3ea568a9b6107ebf0d617c47 6f53a31490fd3182) * Mute the minor version warning OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/protobuf?expand=0&rev=189
68 lines
2.4 KiB
XML
68 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-parent</artifactId>
|
|
<version>4.28.3</version>
|
|
</parent>
|
|
|
|
<artifactId>protobuf-java-util</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Protocol Buffers [Util]</name>
|
|
<description>Utilities for Protocol Buffers</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<version>4.28.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.errorprone</groupId>
|
|
<artifactId>error_prone_annotations</artifactId>
|
|
<version>2.18.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>32.0.1-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.j2objc</groupId>
|
|
<artifactId>j2objc-annotations</artifactId>
|
|
<version>2.8</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- OSGI bundle configuration -->
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Automatic-Module-Name>com.google.protobuf.util</Automatic-Module-Name> <!-- Java9+ Jigsaw module name -->
|
|
<Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
|
|
<Bundle-SymbolicName>com.google.protobuf.util</Bundle-SymbolicName>
|
|
<Export-Package>com.google.protobuf.util;version=${project.version}</Export-Package>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|