Skip to content

Commit 7b37ba5

Browse files
committed
adapted dependencies to Java21 and SNAP 12
1 parent e27c37e commit 7b37ba5

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

idepix-probav/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,18 @@
4747
<groupId>org.esa.snap</groupId>
4848
<artifactId>ceres-core</artifactId>
4949
</dependency>
50+
<dependency>
51+
<groupId>org.esa.snap</groupId>
52+
<artifactId>ceres-binding</artifactId>
53+
</dependency>
5054
<dependency>
5155
<groupId>org.esa.snap</groupId>
5256
<artifactId>ceres-glayer</artifactId>
5357
</dependency>
58+
<dependency>
59+
<groupId>org.esa.snap</groupId>
60+
<artifactId>ceres-jai</artifactId>
61+
</dependency>
5462
<dependency>
5563
<groupId>org.esa.snap</groupId>
5664
<artifactId>snap-core</artifactId>

idepix-spotvgt/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,18 @@
4848
<groupId>org.esa.snap</groupId>
4949
<artifactId>ceres-core</artifactId>
5050
</dependency>
51+
<dependency>
52+
<groupId>org.esa.snap</groupId>
53+
<artifactId>ceres-binding</artifactId>
54+
</dependency>
5155
<dependency>
5256
<groupId>org.esa.snap</groupId>
5357
<artifactId>ceres-glayer</artifactId>
5458
</dependency>
59+
<dependency>
60+
<groupId>org.esa.snap</groupId>
61+
<artifactId>ceres-jai</artifactId>
62+
</dependency>
5563
<dependency>
5664
<groupId>org.esa.snap</groupId>
5765
<artifactId>snap-core</artifactId>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@
142142
<plugin>
143143
<groupId>org.apache.maven.plugins</groupId>
144144
<artifactId>maven-compiler-plugin</artifactId>
145-
<version>3.6.0</version>
145+
<version>3.11.0</version>
146146
<configuration>
147-
<source>11</source>
148-
<target>11</target>
147+
<source>21</source>
148+
<target>21</target>
149149
</configuration>
150150
</plugin>
151151

@@ -179,7 +179,7 @@
179179

180180
<plugin>
181181
<artifactId>maven-jar-plugin</artifactId>
182-
<version>3.0.2</version>
182+
<version>3.4.0</version>
183183
<configuration>
184184
<archive>
185185
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
@@ -189,7 +189,7 @@
189189

190190
<plugin>
191191
<artifactId>maven-surefire-plugin</artifactId>
192-
<version>3.0.0-M4</version>
192+
<version>3.2.5</version>
193193
<configuration>
194194
<enableAssertions>false</enableAssertions>
195195
<!--<skip>true</skip>-->

0 commit comments

Comments
 (0)