panama-uring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dreamlike-ocean</groupId> <artifactId>panama-uring</artifactId> <version>4.1.8</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"> <parent> <artifactId>PanamaUring</artifactId> <groupId>io.github.dreamlike-ocean</groupId> <version>1.0.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>panama-uring</artifactId> <version>4.1.8</version> <packaging>jar</packaging> <properties> <liburing.so.name>liburing-ffi.so.2.6</liburing.so.name> <jemalloc.so.name>libjemalloc.so.2</jemalloc.so.name> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <arch.classifier>${os.detected.classifier}</arch.classifier> <netty.version>4.2.0.Alpha1</netty.version> <kotlin.version>1.9.0</kotlin.version> </properties> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-jvm --> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core-jvm</artifactId> <version>${kotlin.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-native-epoll</artifactId> <version>${netty.version}</version> <classifier>${arch.classifier}</classifier> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.dreamlike-ocean</groupId> <artifactId>unsafe-vt</artifactId> <version>1.0.3</version> </dependency> <dependency> <groupId>io.github.dreamlike-ocean</groupId> <artifactId>panama-generator</artifactId> </dependency> <dependency> <groupId>org.jctools</groupId> <artifactId>jctools-core</artifactId> <version>4.0.1</version> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.13</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.7.1</version> </extension> </extensions> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <executions> <execution> <id>compile-native-dependency</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>sh</executable> <workingDirectory>${project.basedir}/rust</workingDirectory> <arguments> <argument>build.sh</argument> </arguments> </configuration> </execution> <execution> <id>clean-native-dependency</id> <phase>clean</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>sh</executable> <workingDirectory>${project.basedir}/rust</workingDirectory> <arguments> <argument>clean.sh</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>${arch.classifier}</classifier> </configuration> </execution> </executions> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <classifier>${arch.classifier}</classifier> </configuration> <version>2.5</version> </plugin> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <source>src/main/java</source> <source>target/generated-sources/annotations</source> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <source>src/test/java</source> <source>target/generated-test-sources/test-annotations</source> </sourceDirs> </configuration> </execution> </executions> <configuration> <jvmTarget>17</jvmTarget> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <phase>none</phase> </execution> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> <configuration> <target>${java.version}</target> <source>${java.version}</source> <compilerArgs> <compilerArg>--enable-preview</compilerArg> </compilerArgs> </configuration> </plugin> </plugins> </build> </project>