Skip to content

Commit

Permalink
Integrate activation-api 2.1.3,
Browse files Browse the repository at this point in the history
graal-sdk 23.1.2
spotbugs 4.8.3.1

Signed-off-by: Lukas Jungmann <[email protected]>
  • Loading branch information
lukasj committed Feb 15, 2024
1 parent 6c564f4 commit d424e12
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 9 deletions.
30 changes: 27 additions & 3 deletions docs/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
Copyright (c) 2022, 2023 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2022, 2024 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -28,7 +28,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>angus-activation-docs</artifactId>
<packaging>pom</packaging>
<name>Angus Activation documentation</name>
<name>Angus Activation Documentation</name>

<properties>
<angus-activation.www>${project.build.directory}/site</angus-activation.www>
Expand All @@ -47,6 +47,30 @@
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>nativeimage</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>word</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>collections</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -154,7 +178,7 @@
<mkdir dir="${angus-activation.javadoc.destdir}"/>
<javadoc destdir="${angus-activation.javadoc.destdir}"
modulesourcepath="${project.build.directory}/javadoc-sources/"
modulepath="${org.graalvm.sdk:graal-sdk:jar}"
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}"
author="false"
docfilessubdirs="true"
failonerror="true"
Expand Down
32 changes: 26 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 1997, 2024 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand All @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.7</version>
<version>1.0.9</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand All @@ -33,9 +33,9 @@
<properties>
<spec.version>2.1</spec.version>
<spec.title>Jakarta Activation Specification</spec.title>
<activation-api.version>2.1.2</activation-api.version>
<activation-api.version>2.1.3</activation-api.version>
<angus-activation.version>${project.version}</angus-activation.version>
<graal.sdk.version>22.3.0</graal.sdk.version>
<graal.sdk.version>23.1.2</graal.sdk.version>

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

Expand Down Expand Up @@ -118,6 +118,26 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<artifactId>graal-sdk</artifactId>
<version>${graal.sdk.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
<version>${graal.sdk.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>nativeimage</artifactId>
<version>${graal.sdk.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>word</artifactId>
<version>${graal.sdk.version}</version>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>collections</artifactId>
<version>${graal.sdk.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -205,7 +225,7 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.13</version>
<version>1.10.14</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit d424e12

Please sign in to comment.