Skip to content

Commit d8f259a

Browse files
committed
Integrate activation-api 2.1.3, mail-api 2.1.3,
angus-activation 2.0.2, graal-sdk 23.1.2, parent 1.0.9 Signed-off-by: Lukas Jungmann <[email protected]>
1 parent 181d10d commit d8f259a

File tree

2 files changed

+53
-9
lines changed

2 files changed

+53
-9
lines changed

doc/pom.xml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="iso-8859-1"?>
22
<!--
33
4-
Copyright (c) 2022, 2023 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2022, 2024 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -191,7 +191,7 @@
191191
<mkdir dir="${project.build.directory}/javadoc-ant"/>
192192
<javadoc destdir="${angus-mail.javadoc.destdir}"
193193
modulesourcepath="${project.build.directory}/javadoc-sources/"
194-
modulepath="${jakarta.activation:jakarta.activation-api:jar}:${org.graalvm.sdk:graal-sdk:jar}"
194+
modulepath="${jakarta.activation:jakarta.activation-api:jar}:${org.graalvm.sdk:graal-sdk:jar}:${org.graalvm.polyglot:polyglot:jar}:${org.graalvm.sdk:nativeimage:jar}:${org.graalvm.sdk:collections:jar}:${org.graalvm.sdk:word:jar}"
195195
author="false"
196196
docfilessubdirs="true"
197197
failonerror="true"
@@ -302,6 +302,30 @@
302302
<optional>true</optional>
303303
<scope>provided</scope>
304304
</dependency>
305+
<dependency>
306+
<groupId>org.graalvm.polyglot</groupId>
307+
<artifactId>polyglot</artifactId>
308+
<optional>true</optional>
309+
<scope>provided</scope>
310+
</dependency>
311+
<dependency>
312+
<groupId>org.graalvm.sdk</groupId>
313+
<artifactId>nativeimage</artifactId>
314+
<optional>true</optional>
315+
<scope>provided</scope>
316+
</dependency>
317+
<dependency>
318+
<groupId>org.graalvm.sdk</groupId>
319+
<artifactId>word</artifactId>
320+
<optional>true</optional>
321+
<scope>provided</scope>
322+
</dependency>
323+
<dependency>
324+
<groupId>org.graalvm.sdk</groupId>
325+
<artifactId>collections</artifactId>
326+
<optional>true</optional>
327+
<scope>provided</scope>
328+
</dependency>
305329
</dependencies>
306330

307331
</project>

pom.xml

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="iso-8859-1"?>
22
<!--
33
4-
Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 1997, 2024 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.eclipse.ee4j</groupId>
2525
<artifactId>project</artifactId>
26-
<version>1.0.7</version>
26+
<version>1.0.9</version>
2727
<relativePath/>
2828
</parent>
2929

@@ -75,7 +75,7 @@
7575
<copyright.update>false</copyright.update>
7676
<spotbugs.skip>true</spotbugs.skip>
7777
<spotbugs.threshold>High</spotbugs.threshold>
78-
<spotbugs.plugin.version>4.7.3.4</spotbugs.plugin.version>
78+
<spotbugs.plugin.version>4.8.3.1</spotbugs.plugin.version>
7979

8080
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8181
<angus-mail.javadoc.source>11</angus-mail.javadoc.source>
@@ -86,13 +86,13 @@ Comments to: <a href="mailto:[email protected]">[email protected]</a>.<b
8686
Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]]></angus-mail.javadoc.bottom>
8787

8888
<mail.spec.version>2.1</mail.spec.version>
89-
<mail-api.version>2.1.2</mail-api.version>
90-
<activation-api.version>2.1.2</activation-api.version>
89+
<mail-api.version>2.1.3</mail-api.version>
90+
<activation-api.version>2.1.3</activation-api.version>
9191
<jsp-api.version>3.0.0</jsp-api.version>
9292
<servlet-api.version>5.0.0</servlet-api.version>
93-
<angus.activation.version>2.0.1</angus.activation.version>
93+
<angus.activation.version>2.0.2</angus.activation.version>
9494
<angus-mail.version>${project.version}</angus-mail.version>
95-
<graal.sdk.version>22.3.0</graal.sdk.version>
95+
<graal.sdk.version>23.1.2</graal.sdk.version>
9696
<!-- used in jakarta.mail/jakarta.mail.Version -->
9797
<mail.version>${mail-api.version}</mail.version>
9898
<skip9>false</skip9>
@@ -186,6 +186,26 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
186186
<artifactId>graal-sdk</artifactId>
187187
<version>${graal.sdk.version}</version>
188188
</dependency>
189+
<dependency>
190+
<groupId>org.graalvm.polyglot</groupId>
191+
<artifactId>polyglot</artifactId>
192+
<version>${graal.sdk.version}</version>
193+
</dependency>
194+
<dependency>
195+
<groupId>org.graalvm.sdk</groupId>
196+
<artifactId>nativeimage</artifactId>
197+
<version>${graal.sdk.version}</version>
198+
</dependency>
199+
<dependency>
200+
<groupId>org.graalvm.sdk</groupId>
201+
<artifactId>word</artifactId>
202+
<version>${graal.sdk.version}</version>
203+
</dependency>
204+
<dependency>
205+
<groupId>org.graalvm.sdk</groupId>
206+
<artifactId>collections</artifactId>
207+
<version>${graal.sdk.version}</version>
208+
</dependency>
189209
<dependency>
190210
<groupId>org.eclipse.angus</groupId>
191211
<artifactId>taglib</artifactId>

0 commit comments

Comments
 (0)