Commit 78cc5e61 authored by Andrey Filippov's avatar Andrey Filippov

changing Maven dependencies to to mitigate F8 after program start

parent d32e678f
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
<properties> <properties>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<!-- codex 2026-01-26: override transitive netcdf version to fix bad manifest Class-Path -->
<netcdf.version>4.3.22-elphel2</netcdf.version>
</properties> </properties>
<groupId>com.elphel</groupId> <groupId>com.elphel</groupId>
...@@ -26,6 +28,17 @@ ...@@ -26,6 +28,17 @@
<!-- <name>plugins/Aberration_Calibration.jar</name> --> <!-- <name>plugins/Aberration_Calibration.jar</name> -->
<description>A Maven project implementing imagej-elphel plugin</description> <description>A Maven project implementing imagej-elphel plugin</description>
<!-- codex 2026-01-26: pin netcdf to avoid missing Class-Path entries in 4.3.19 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>edu.ucar</groupId>
<artifactId>netcdf</artifactId>
<version>${netcdf.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies> <dependencies>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency> <dependency>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment