common-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.groupbyinc</groupId> <artifactId>common-api</artifactId> <version>187</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>common</artifactId> <groupId>com.groupbyinc</groupId> <version>187</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>common-api</artifactId> <name>GroupBy - Common - Api</name> <description>${project.name}</description> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> </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>com.groupbyinc:*</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.apache</pattern> <shadedPattern>com.groupbyinc.common.apache</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml.jackson</pattern> <shadedPattern>com.groupbyinc.common.jackson</shadedPattern> </relocation> </relocations> <transformers> <transformer> <manifestEntries> <Archive-Type>Uber JAR</Archive-Type> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.groupbyinc</groupId> <artifactId>common-test-internal</artifactId> <version>187</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jsonassert</artifactId> <groupId>org.skyscreamer</groupId> </exclusion> <exclusion> <artifactId>dom4j</artifactId> <groupId>org.dom4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <project.build.jdkVersion>1.6</project.build.jdkVersion> </properties> </project>