d5f5e14dda
Documentation release for the R binding. The library API and every indicator are unchanged from `0.9.5`; only the R package's help pages change. ### What's in 0.9.6 - **R package documentation** (landed in #330): the twelve undocumented data-layer exports now have full man pages, the stale `AwesomeOscillatorHistogram` codoc is fixed, and a broken `push()` example is corrected — clearing the two `R CMD check` warnings r-universe reported for `0.9.5`. CI now runs `R CMD check` so doc drift fails the PR instead of reaching r-universe. Pure version-string bump on top — `bump_version.py` touched 19 files. `cargo fmt` clean. Tag/publish waits for explicit GO (irreversible publish to crates.io / PyPI / npm / NuGet / Maven / Go / r-universe).
57 lines
1.7 KiB
XML
57 lines
1.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.examples</groupId>
|
|
<artifactId>wickra-examples</artifactId>
|
|
<version>0.9.6</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.9.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.15.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.6.3</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>
|