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.
172 lines
5.7 KiB
XML
172 lines
5.7 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</groupId>
|
|
<artifactId>wickra</artifactId>
|
|
<version>0.8.3</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Wickra</name>
|
|
<description>High-performance streaming technical-analysis indicators (514 indicators) for the
|
|
JVM, backed by the native Rust core through the Wickra C ABI via the Java FFM API (Panama).</description>
|
|
<url>https://github.com/wickra-lib/wickra</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>MIT</name>
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
<license>
|
|
<name>Apache-2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>kingchenc</id>
|
|
<name>kingchenc</name>
|
|
<url>https://github.com/kingchenc</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/wickra-lib/wickra.git</connection>
|
|
<developerConnection>scm:git:https://github.com/wickra-lib/wickra.git</developerConnection>
|
|
<url>https://github.com/wickra-lib/wickra</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.release>22</maven.compiler.release>
|
|
<junit.version>5.10.2</junit.version>
|
|
<!-- The FFM API is restricted; grant native access to the unnamed module so
|
|
tests and examples run without warnings. Consumers pass the same flag. -->
|
|
<native.access.arg>--enable-native-access=ALL-UNNAMED</native.access.arg>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.13.0</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.2.5</version>
|
|
<configuration>
|
|
<argLine>${native.access.arg}</argLine>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.4.1</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<!-- Grant native access when the jar is run directly. -->
|
|
<Enable-Native-Access>ALL-UNNAMED</Enable-Native-Access>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<!--
|
|
Release profile (CI only, gated): attaches source + javadoc jars, GPG-signs
|
|
every artifact, and publishes to Maven Central via the central-publishing
|
|
plugin. The native libraries are unpacked from the wickra-c-<triple>.tar.gz
|
|
release assets into src/main/resources/native/<os>-<arch>/ before `mvn deploy`,
|
|
so the published jar carries every platform's library.
|
|
-->
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals><goal>jar-no-fork</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<!-- Generated members are self-descriptive; do not fail on doclint. -->
|
|
<doclint>none</doclint>
|
|
<quiet>true</quiet>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals><goal>jar</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>3.2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals><goal>sign</goal></goals>
|
|
<configuration>
|
|
<!-- Non-interactive signing on CI: modern GPG needs loopback
|
|
pinentry to take the passphrase from the env without a TTY. -->
|
|
<gpgArguments>
|
|
<arg>--pinentry-mode</arg>
|
|
<arg>loopback</arg>
|
|
</gpgArguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.sonatype.central</groupId>
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
<version>0.5.0</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<publishingServerId>central</publishingServerId>
|
|
<autoPublish>true</autoPublish>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|