oak-shaded-guava
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>oak-shaded-guava</artifactId> <version>1.82.0</version> </dependency>
<?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"> <parent> <artifactId>oak-parent</artifactId> <groupId>org.apache.jackrabbit</groupId> <version>1.82.0</version> <relativePath>../oak-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>oak-shaded-guava</artifactId> <packaging>bundle</packaging> <name>Jackrabbit Guava Wrapper</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.google.guava:guava</include> <include>com.google.guava:failureaccess</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.google</pattern> <shadedPattern>${pref}</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>com/google/common/annotations/**</exclude> <exclude>com/google/common/eventbus/**</exclude> <exclude>com/google/common/html/**</exclude> <exclude>com/google/common/io/**</exclude> <exclude>com/google/common/net/**</exclude> <exclude>com/google/common/reflect/**</exclude> <exclude>com/google/common/xml/**</exclude> </excludes> </filter> </filters> <createDependencyReducedPom>true</createDependencyReducedPom> <createSourcesJar>true</createSourcesJar> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>dependency-reduced-pom.xml</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>org.apache.jackrabbit.guava</Bundle-SymbolicName> <Export-Package>${pref}.common.base;version="33.5.0", ${pref}.common.cache;version="33.4.1";uses:="${pref}.common.base,${pref}.common.collect,${pref}.common.util.concurrent", ${pref}.common.collect;version="34.0.0";uses:="${pref}.common.base", ${pref}.common.escape;version="33.4.1";uses:="${pref}.common.base", ${pref}.common.graph;version="33.4.1";uses:="${pref}.common.collect", ${pref}.common.hash;version="33.5.0";uses:="${pref}.common.base", ${pref}.common.math;version="33.4.1", ${pref}.common.primitives;version="33.4.1";uses:="${pref}.common.base", ${pref}.common.util.concurrent;version="33.4.1";uses:="${pref}.common.base,${pref}.common.collect,${pref}.common.util.concurrent.internal",</Export-Package> <Import-Package>javax.crypto;resolution:=optional, javax.crypto.spec;resolution:=optional, sun.misc;resolution:=optional</Import-Package> </instructions> </configuration> </plugin> </plugins> </build> <properties> <pref>org.apache.jackrabbit.guava</pref> <shaded.guava.version>33.4.8-jre</shaded.guava.version> </properties> </project>