opflow-shade-okhttp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.devebot.opflow</groupId> <artifactId>opflow-shade-okhttp</artifactId> <version>4.4.1-final</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.devebot.opflow</groupId> <artifactId>opflow-shade-okhttp</artifactId> <name>opflow-shade-okhttp</name> <version>4.4.1-final</version> <description>Opflow shaded okhttp library</description> <url>https://github.com/opflow/opflow-java</url> <developers> <developer> <name>Devebot Team</name> <email>contact@devebot.com</email> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/opflow/opflow-java.git</connection> <developerConnection>scm:git:ssh://github.com:opflow/opflow-java.git</developerConnection> <url>https://github.com/opflow/opflow-java/tree/master</url> </scm> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>shade</id> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>okhttp3</pattern> <shadedPattern>com.squareup.nostro.okhttp3</shadedPattern> </relocation> <relocation> <pattern>okio</pattern> <shadedPattern>com.squareup.nostro.okio</shadedPattern> </relocation> <relocation> <pattern>kotlin</pattern> <shadedPattern>com.squareup.vostro.kotlin</shadedPattern> </relocation> <relocation> <pattern>org.jetbrains</pattern> <shadedPattern>com.squareup.vostro.org.jetbrains</shadedPattern> </relocation> <relocation> <pattern>org.intellij</pattern> <shadedPattern>com.squareup.vostro.org.intellij</shadedPattern> </relocation> </relocations> <artifactSet> <includes> <include>*:*</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>dep</id> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>8</source> </configuration> </execution> </executions> <configuration> <source>8</source> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <executions> <execution> <id>injected-nexus-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <java.version>1.8</java.version> <okhttp3.version>4.4.1</okhttp3.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <artifact.name>${project.artifactId}</artifact.name> </properties> </project>