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
2 changes: 1 addition & 1 deletion cross-language-tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def run_java_roundtrip(

# Add library path if blosc is found
if blosc_path:
cmd.append(f"-Djava.library.path={blosc_path}")
cmd.append(f"-Djna.library.path={blosc_path}")

cmd.extend(
[
Expand Down
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,30 @@
<argLine>-Xmx4g -Djna.library.path=/opt/homebrew/opt/c-blosc/lib</argLine>
</configuration>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.mastodon.geff.RoundTripGeff</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>
</profile>
Expand Down
Loading