Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ The following headings may be used while categorizing the list of changes made i
- Documentation
- Known Issues

## [0.2.1] - May 18, 2026

### Removed Features

- Removed Native Image Support
- Removed `native` profile from Maven

## [0.2.0] - May 13, 2026

### New Features
Expand Down
11 changes: 0 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
- [Download](#download)
- [Documentation](#documentation)
- [Usage](#usage)
- [GraalVM Native Image Support](#native-image-support)
- [Projects Using Cimari](#projects-using-cimari)
- [License](#license)

Expand Down Expand Up @@ -194,16 +193,6 @@ public class ProcessorExample {
}
```

# Native Image Support

Starting from v0.2.0, cimari provides experimental support for native building. The library now comes
bundled with [reachability metadata](https://www.graalvm.org/latest/reference-manual/native-image/metadata/),
enabling it to work out of the box
with [GraalVM Native Image](https://www.graalvm.org/latest/reference-manual/native-image/).

Please note that support for native builds is experimental and may sometimes require additional configuration
or metadata.

# Projects Using Cimari

1) [Nautilus](https://github.com/eggy03/Nautilus) - A cross-platform Swing based GUI application for displaying computer
Expand Down
37 changes: 0 additions & 37 deletions native/test-filter.json

This file was deleted.

43 changes: 1 addition & 42 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.eggy03</groupId>
<artifactId>cimari</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>

<properties>
<maven.compiler.release>8</maven.compiler.release>
Expand Down Expand Up @@ -48,8 +48,6 @@
<sign.maven.plugin.version>1.1.0</sign.maven.plugin.version>
<central.publishing.maven.plugin.version>0.10.0</central.publishing.maven.plugin.version>
<jacoco.maven.plugin.version>0.8.14</jacoco.maven.plugin.version>

<native.maven.plugin.version>1.1.0</native.maven.plugin.version>
<maven.surefire.plugin.version>3.5.5</maven.surefire.plugin.version>
</properties>

Expand Down Expand Up @@ -191,10 +189,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<!-- Don't run the reachability-generation tests when using -Pdist-->
<configuration>
<excludedGroups>reachability-metadata-generation</excludedGroups>
</configuration>
</plugin>
<!-- Add Generated Sources -->
<plugin>
Expand Down Expand Up @@ -308,40 +302,5 @@
</plugins>
</build>
</profile>

<profile>
<id>native</id>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>

<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>${native.maven.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<agent>
<enabled>true</enabled>
<defaultMode>Standard</defaultMode>
<options>
<callerFilterFiles>
<filterFile>
${project.basedir}/native/test-filter.json
</filterFile>
</callerFilterFiles>
<trackReflectionMetadata>true</trackReflectionMetadata>
</options>
</agent>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Loading
Loading