serializer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>serializer</artifactId>
<version>1.1.3</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.datakernel</groupId>
<artifactId>datakernel</artifactId>
<version>1.1.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>serializer</artifactId>
<name>DataKernel: Serializer</name>
<description>
Extremely fast and space-efficient serializers, crafted using bytecode engineering.
</description>
<dependencies>
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>hppc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>codegen</artifactId>
<version>${version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>uberJar</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>com.carrotsearch</exclude>
</excludes>
</artifactSet>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>io.datakernel.thirdparty.org.objectweb.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>