<?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>common</artifactId> <groupId>com.groupbyinc</groupId> <version>39</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>common-http</artifactId> <name>GroupBy - Common - HTTP</name> <description>${project.name}</description> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${project.basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadeTestJar>true</shadeTestJar> <createSourcesJar>true</createSourcesJar> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${project.build.directory}/${project.build.finalName}.pom</dependencyReducedPomLocation> <artifactSet> <includes> <include>org.apache.httpcomponents:*</include> <include>commons-codec:*</include> <include>commons-logging:*</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.apache</pattern> <shadedPattern>com.groupbyinc.common.apache</shadedPattern> </relocation> </relocations> <transformers> <transformer> <manifestEntries> <Archive-Type>Uber JAR</Archive-Type> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.groupbyinc</groupId> <artifactId>common-http</artifactId> <version>39</version> </dependency>
com.groupbyinc:common-http:39