Skip to content

Commit d424e12

Browse files
committed
Integrate activation-api 2.1.3,
graal-sdk 23.1.2 spotbugs 4.8.3.1 Signed-off-by: Lukas Jungmann <[email protected]>
1 parent 6c564f4 commit d424e12

File tree

2 files changed

+53
-9
lines changed

2 files changed

+53
-9
lines changed

docs/pom.xml

+27-3
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
@@ -28,7 +28,7 @@
2828
<modelVersion>4.0.0</modelVersion>
2929
<artifactId>angus-activation-docs</artifactId>
3030
<packaging>pom</packaging>
31-
<name>Angus Activation documentation</name>
31+
<name>Angus Activation Documentation</name>
3232

3333
<properties>
3434
<angus-activation.www>${project.build.directory}/site</angus-activation.www>
@@ -47,6 +47,30 @@
4747
<optional>true</optional>
4848
<scope>provided</scope>
4949
</dependency>
50+
<dependency>
51+
<groupId>org.graalvm.polyglot</groupId>
52+
<artifactId>polyglot</artifactId>
53+
<optional>true</optional>
54+
<scope>provided</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.graalvm.sdk</groupId>
58+
<artifactId>nativeimage</artifactId>
59+
<optional>true</optional>
60+
<scope>provided</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.graalvm.sdk</groupId>
64+
<artifactId>word</artifactId>
65+
<optional>true</optional>
66+
<scope>provided</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.graalvm.sdk</groupId>
70+
<artifactId>collections</artifactId>
71+
<optional>true</optional>
72+
<scope>provided</scope>
73+
</dependency>
5074
</dependencies>
5175

5276
<build>
@@ -154,7 +178,7 @@
154178
<mkdir dir="${angus-activation.javadoc.destdir}"/>
155179
<javadoc destdir="${angus-activation.javadoc.destdir}"
156180
modulesourcepath="${project.build.directory}/javadoc-sources/"
157-
modulepath="${org.graalvm.sdk:graal-sdk:jar}"
181+
modulepath="${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}"
158182
author="false"
159183
docfilessubdirs="true"
160184
failonerror="true"

pom.xml

+26-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
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 Distribution License v. 1.0, which is available at
@@ -18,7 +18,7 @@
1818
<parent>
1919
<groupId>org.eclipse.ee4j</groupId>
2020
<artifactId>project</artifactId>
21-
<version>1.0.7</version>
21+
<version>1.0.9</version>
2222
</parent>
2323

2424
<modelVersion>4.0.0</modelVersion>
@@ -33,9 +33,9 @@
3333
<properties>
3434
<spec.version>2.1</spec.version>
3535
<spec.title>Jakarta Activation Specification</spec.title>
36-
<activation-api.version>2.1.2</activation-api.version>
36+
<activation-api.version>2.1.3</activation-api.version>
3737
<angus-activation.version>${project.version}</angus-activation.version>
38-
<graal.sdk.version>22.3.0</graal.sdk.version>
38+
<graal.sdk.version>23.1.2</graal.sdk.version>
3939

4040
<angus-activation.javadoc.source>11</angus-activation.javadoc.source>
4141
<angus-activation.javadoc.title>Angus Activation API documentation</angus-activation.javadoc.title>
@@ -51,7 +51,7 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
5151
<spotbugs.skip>false</spotbugs.skip>
5252
<spotbugs.threshold>Low</spotbugs.threshold>
5353
<spotbugs.exclude>etc/spotbugs-exclude.xml</spotbugs.exclude>
54-
<spotbugs.version>4.7.3.4</spotbugs.version>
54+
<spotbugs.version>4.8.3.1</spotbugs.version>
5555
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5656
</properties>
5757

@@ -118,6 +118,26 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
118118
<artifactId>graal-sdk</artifactId>
119119
<version>${graal.sdk.version}</version>
120120
</dependency>
121+
<dependency>
122+
<groupId>org.graalvm.polyglot</groupId>
123+
<artifactId>polyglot</artifactId>
124+
<version>${graal.sdk.version}</version>
125+
</dependency>
126+
<dependency>
127+
<groupId>org.graalvm.sdk</groupId>
128+
<artifactId>nativeimage</artifactId>
129+
<version>${graal.sdk.version}</version>
130+
</dependency>
131+
<dependency>
132+
<groupId>org.graalvm.sdk</groupId>
133+
<artifactId>word</artifactId>
134+
<version>${graal.sdk.version}</version>
135+
</dependency>
136+
<dependency>
137+
<groupId>org.graalvm.sdk</groupId>
138+
<artifactId>collections</artifactId>
139+
<version>${graal.sdk.version}</version>
140+
</dependency>
121141
</dependencies>
122142
</dependencyManagement>
123143

@@ -205,7 +225,7 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
205225
<dependency>
206226
<groupId>org.apache.ant</groupId>
207227
<artifactId>ant</artifactId>
208-
<version>1.10.13</version>
228+
<version>1.10.14</version>
209229
</dependency>
210230
</dependencies>
211231
</plugin>

0 commit comments

Comments
 (0)