fst
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.ruedigermoeller</groupId> <artifactId>fst</artifactId> <version>3.0.4-jdk17</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> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>de.ruedigermoeller</groupId> <artifactId>fst</artifactId> <version>3.0.4-jdk17</version> <packaging>bundle</packaging> <description>A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.</description> <url>http://ruedigermoeller.github.io/fast-serialization/</url> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/RuedigerMoeller/fast-serialization/</url> <connection>scm:git:git://github.com/RuedigerMoeller/fast-serialization.git</connection> <developerConnection>scm:git:git@github.com:RuedigerMoeller/fast-serialization.git</developerConnection> </scm> <!-- https://docs.sonatype.org/display/Repository/Central+Sync+Requirements https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <!--<encoding>UTF-8</encoding>--> <debug>true</debug> <debuglevel>lines,vars,source</debuglevel> <!-- required to make structs work --> <optimize>false</optimize> <verbose>true</verbose> <source>14</source> <target>14</target> <encoding>UTF-8</encoding> <compilerArgs> <arg>--add-modules</arg> <arg>jdk.incubator.foreign</arg> </compilerArgs> </configuration> <executions> <execution> <id>default-testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <skip>true</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <javadocExecutable>/Library/Java/JavaVirtualMachines/jdk-17.0.2.jdk/Contents/Home/bin/javadoc</javadocExecutable> <additionalOptions>-Xdoclint:none</additionalOptions> <additionalJOptions> <additionalJOption>--add-modules</additionalJOption> <additionalJOption>jdk.incubator.foreign</additionalJOption> </additionalJOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.5</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Import-Package>*</Import-Package> <Export-Package>org.nustaq.*;-noimport:=true</Export-Package> <DynamicImport-Package>*</DynamicImport-Package> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <!-- required for createJSONConfiguration --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.8.8</version> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.5</version> <type>maven-plugin</type> </dependency> <!-- only required if structs are used --> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.21.0-GA</version> </dependency> <!-- only required for android --> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>2.5.1</version> </dependency> <!-- test dependencies --> <!--<dependency>--> <!--<groupId>org.hamcrest</groupId>--> <!--<artifactId>hamcrest-junit</artifactId>--> <!--<version>2.0.0.0</version>--> <!--<scope>test</scope>--> <!--</dependency>--> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.51</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>1.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> <version>2.1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.json</groupId> <artifactId>javax.json-api</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.json</artifactId> <version>1.0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil</artifactId> <version>8.5.9</version> </dependency> <dependency> <groupId>com.cedarsoftware</groupId> <artifactId>java-util</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> </dependencies> </project>