fory-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> <version>0.12.2</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>fory-parent</artifactId> <groupId>org.apache.fory</groupId> <version>0.12.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>fory-core</artifactId> <description>Apache Fory™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy.</description> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.apache.fory.core</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>true</minimizeJar> <artifactSet> <includes> <include>org.codehaus.janino</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.codehaus</pattern> <shadedPattern>org.apache.fory.shaded.org.codehaus</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/**/janino/*</exclude> </excludes> </filter> </filters> <transformers> <transformer> <manifestEntries> <Automatic-Module-Name>org.apache.fory.core</Automatic-Module-Name> </manifestEntries> </transformer> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.12</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.1.2-jre</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-test-core</artifactId> <version>0.12.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>testng</artifactId> <groupId>org.testng</groupId> </exclusion> <exclusion> <artifactId>lombok</artifactId> <groupId>org.projectlombok</groupId> </exclusion> <exclusion> <artifactId>maven-jdk-tools-wrapper</artifactId> <groupId>com.github.olivergondza</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>kryo</artifactId> <groupId>com.esotericsoftware</groupId> </exclusion> <exclusion> <artifactId>reflectasm</artifactId> <groupId>com.esotericsoftware</groupId> </exclusion> <exclusion> <artifactId>minlog</artifactId> <groupId>com.esotericsoftware.minlog</groupId> </exclusion> <exclusion> <artifactId>fst</artifactId> <groupId>de.ruedigermoeller</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j2-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <maven.compiler.target>8</maven.compiler.target> <fory.java.rootdir>${basedir}/..</fory.java.rootdir> <maven.compiler.source>8</maven.compiler.source> </properties> </project>