3ee3fb67ec
Version bump 0.8.2 → 0.8.3, releasing the per-binding throughput benchmark work (merged in #246). Bumped via `ScriptHelpers/bump_version.py` across all manual touchpoints — `Cargo.toml`, `pyproject.toml`, the Node `package.json` + 6 platform packages + both lockfiles, the Java `pom.xml`s + README, the C# `.csproj`, the R `DESCRIPTION` — plus `Cargo.lock` (via `cargo build`) and the `CHANGELOG.md` `[0.8.3]` section and compare URLs. CHANGELOG `[0.8.3]`: - Per-binding throughput benchmarks for all 9 targets (BENCHMARKS.md §3). - C ABI archetype test (`examples/c/archetypes.c`). `cargo fmt`, `cargo test --workspace --all-features` (all green) and `cargo clippy --workspace --all-targets --all-features -D warnings` pass. The docs/webpage version strings are bumped by `sync-about.yml` on the `v*` tag — not touched here.
63 lines
2.0 KiB
XML
63 lines
2.0 KiB
XML
<?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>
|
|
|
|
<groupId>org.wickra.examples</groupId>
|
|
<artifactId>wickra-examples</artifactId>
|
|
<version>0.8.3</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Wickra Java examples</name>
|
|
<description>Runnable examples for the Wickra Java binding.</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.release>22</maven.compiler.release>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.wickra</groupId>
|
|
<artifactId>wickra</artifactId>
|
|
<version>0.8.3</version>
|
|
</dependency>
|
|
<!-- Only the network examples (fetch_btcusdt) parse JSON. -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.17.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.13.0</version>
|
|
</plugin>
|
|
|
|
<!--
|
|
Run an example in a forked JVM with native access granted:
|
|
mvn exec:exec -Dexec.mainClass=org.wickra.examples.Streaming
|
|
-->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<configuration>
|
|
<executable>${java.home}/bin/java</executable>
|
|
<arguments>
|
|
<argument>--enable-native-access=ALL-UNNAMED</argument>
|
|
<argument>-classpath</argument>
|
|
<classpath/>
|
|
<argument>${exec.mainClass}</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|