hdi-oauth-token-utils-shaded
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.azure.hdinsight</groupId> <artifactId>hdi-oauth-token-utils-shaded</artifactId> <version>1.0.2</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft.azure.hdinsight</groupId> <artifactId>hdi-oauth-token-utils-shaded</artifactId> <name>Microsoft HDInsight Oauth Token Utility Shaded</name> <version>1.0.2</version> <description>This package contains HDInsight OAuth client utility to get access token for Azure resources. This contains all its 3rd party transitive dependencies in shaded form, excluding hadoop-common dependent jars.</description> <url>https://azure.microsoft.com/en-us/products/hdinsight/</url> <developers> <developer> <name>HDInsight Hadoop Core</name> <email>hadoopcore@microsoft.com</email> <organization>Microsoft</organization> <organizationUrl>http://www.microsoft.com/</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <url>SCM URL is private and not meant for public access</url> </scm> <organization> <name>Microsoft Corporation</name> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${flatten-maven-plugin.version}</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>okhttp3/</pattern> <shadedPattern>${shaded.dependency.prefix}.okhttp3.</shadedPattern> </relocation> <relocation> <pattern>kotlin/</pattern> <shadedPattern>${shaded.dependency.prefix}.kotlin.</shadedPattern> </relocation> <relocation> <pattern>okio/</pattern> <shadedPattern>${shaded.dependency.prefix}.okio.</shadedPattern> </relocation> <relocation> <pattern>org.apache.http/</pattern> <shadedPattern>${shaded.dependency.prefix}.org.apache.http.</shadedPattern> </relocation> <relocation> <pattern>org.slf4j/</pattern> <shadedPattern>${shaded.dependency.prefix}.org.slf4j.</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>**/*.so</exclude> <exclude>krb5-template.conf</exclude> <exclude>krb5_udp-template.conf</exclude> <exclude>keytab.txt</exclude> <exclude>ccache.txt</exclude> <exclude>*.properties</exclude> <exclude>common-version-info.properties</exclude> <exclude>about.html</exclude> <exclude>core-default.xml</exclude> <exclude>*.dtd</exclude> <exclude>*.class</exclude> <exclude>*.css</exclude> <exclude>org/apache/**</exclude> <exclude>org/checkerframework/**</exclude> <exclude>org/codehaus/**</exclude> <exclude>org/eclipse/jetty/**</exclude> <exclude>org/objectweb/asm/**</exclude> <exclude>org/xbill/DNS/**</exclude> <exclude>org/xerial/snappy/**</exclude> <exclude>com/azure/core/**</exclude> <exclude>reactor/**</exclude> <exclude>assets/org/apache/**</exclude> <exclude>javax/**</exclude> <exclude>jersey/**</exclude> <exclude>mozilla/**</exclude> <exclude>net/**</exclude> <exclude>com/ctc/**</exclude> <exclude>com/google/**</exclude> <exclude>com/nimbusds/**</exclude> <exclude>com/jcraft/jsch/**</exclude> <exclude>com/sun/**</exclude> <exclude>com/thoughtworks/paranamer/**</exclude> <exclude>com/azure/json/**</exclude> <exclude>com/azure/xml/**</exclude> <exclude>com/fasterxml/jackson/**</exclude> <exclude>io/netty/**</exclude> <exclude>org/reactivestreams/**</exclude> </excludes> </filter> </filters> <transformers> <transformer /> <transformer> <resource>NOTICE.txt</resource> </transformer> <transformer> <resource>META-INF/LICENSE.txt</resource> <file>${basedir}/../../LICENSE.txt</file> </transformer> <transformer> <resource>META-INF/NOTICE.txt</resource> <file>${basedir}/../../NOTICE.txt</file> </transformer> <transformer> <file>${basedir}/target/classes/*</file> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>**/*.so</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <releases /> <snapshots /> <id>central</id> <url>https://pkgs.dev.azure.com/msdata/HDInsight/_packaging/HDInsight_PublicPackages/maven/v1</url> </repository> <repository> <releases /> <snapshots /> <id>HDInsight-Client-Utility-Feed</id> <url>https://msdata.pkgs.visualstudio.com/HDInsight/_packaging/HDInsight-Client-Utility-Feed/maven/v1</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases /> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <url>https://pkgs.dev.azure.com/msdata/HDInsight/_packaging/HDInsight_PublicPackages/maven/v1</url> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>HDInsight-Client-Utility-Feed</id> <url>${publishpath}</url> </repository> </distributionManagement> <properties> <flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version> <hdioauthtokenutils.version>1.0.0</hdioauthtokenutils.version> <shaded.dependency.prefix>com.microsoft.azure.hdinsight.oauthtoken.thirdparty.shaded</shaded.dependency.prefix> </properties> </project>