diff options
author | maxim-yurchuk <maxim-yurchuk@yandex-team.com> | 2024-10-09 12:29:46 +0300 |
---|---|---|
committer | maxim-yurchuk <maxim-yurchuk@yandex-team.com> | 2024-10-09 13:14:22 +0300 |
commit | 9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80 (patch) | |
tree | a8fb3181d5947c0d78cf402aa56e686130179049 /contrib/java/com/google/guava/failureaccess/1.0.1/pom.xml | |
parent | a44b779cd359f06c3ebbef4ec98c6b38609d9d85 (diff) | |
download | ydb-9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80.tar.gz |
publishFullContrib: true for ydb
<HIDDEN_URL>
commit_hash:c82a80ac4594723cebf2c7387dec9c60217f603e
Diffstat (limited to 'contrib/java/com/google/guava/failureaccess/1.0.1/pom.xml')
-rw-r--r-- | contrib/java/com/google/guava/failureaccess/1.0.1/pom.xml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/contrib/java/com/google/guava/failureaccess/1.0.1/pom.xml b/contrib/java/com/google/guava/failureaccess/1.0.1/pom.xml new file mode 100644 index 0000000000..6cce78255d --- /dev/null +++ b/contrib/java/com/google/guava/failureaccess/1.0.1/pom.xml @@ -0,0 +1,68 @@ +<?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.guava</groupId> + <artifactId>guava-parent</artifactId> + <version>26.0-android</version> + </parent> + <artifactId>failureaccess</artifactId> + <version>1.0.1</version> + <packaging>bundle</packaging> + <name>Guava InternalFutureFailureAccess and InternalFutures</name> + <description> + Contains + com.google.common.util.concurrent.internal.InternalFutureFailureAccess and + InternalFutures. Most users will never need to use this artifact. Its + classes is conceptually a part of Guava, but they're in this separate + artifact so that Android libraries can use them without pulling in all of + Guava (just as they can use ListenableFuture by depending on the + listenablefuture artifact). + </description> + <build> + <plugins> + <plugin> + <artifactId>maven-source-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>animal-sniffer-maven-plugin</artifactId> + </plugin> + <plugin> + <extensions>true</extensions> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>2.5.0</version> + <executions> + <execution> + <id>bundle-manifest</id> + <phase>process-classes</phase> + <goals> + <goal>manifest</goal> + </goals> + </execution> + </executions> + <configuration> + <instructions> + <Export-Package>com.google.common.util.concurrent.internal</Export-Package> + <Bundle-DocURL>https://github.com/google/guava/</Bundle-DocURL> + </instructions> + </configuration> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-docs</id> + </execution> + <execution> + <id>generate-javadoc-site-report</id> + <phase>site</phase> + <goals><goal>javadoc</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> |