From 89a83fd872feda844cd79fab6a23d72998031863 Mon Sep 17 00:00:00 2001 From: Tomas Kraus Date: Fri, 6 Aug 2021 12:19:38 +0200 Subject: [PATCH 1/2] Dependencies update. Turned more compiler warnings on. Signed-off-by: Tomas Kraus --- pom.xml | 20 +++++++++++++------- saaj-ri/pom.xml | 12 ++++++++++-- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index e2bc027..b7e4610 100644 --- a/pom.xml +++ b/pom.xml @@ -87,13 +87,14 @@ etc/config ../ - 2.0.1 - 3.0.1 - 2.0.1 + 2.1.0-RC1 + 4.0.0-RC1 + 3.0.0-RC1 + 1.0.0-M1 2.0.0 - 1.9.14 - 2.0.1 + 1.9.15 + 2.1.0-M1 4.13.2 @@ -270,6 +271,11 @@ jakarta.activation-api ${activation.version} + + org.eclipse.angus + angus-activation + ${angus-activation.version} + jakarta.xml.bind jakarta.xml.bind-api @@ -296,8 +302,8 @@ ${junit.version} - com.sun.activation - jakarta.activation + jakarta.activation + jakarta.activation-api ${activation.version} diff --git a/saaj-ri/pom.xml b/saaj-ri/pom.xml index 2e0dc6b..798e956 100644 --- a/saaj-ri/pom.xml +++ b/saaj-ri/pom.xml @@ -42,6 +42,8 @@ maven-compiler-plugin 9 + true + true -Xlint:all @@ -185,9 +187,15 @@ - com.sun.activation - jakarta.activation + jakarta.activation + jakarta.activation-api + + org.eclipse.angus + angus-activation + runtime + + jakarta.xml.bind From e67b20c7a531fb900255f5fe12bc6cc8de91806f Mon Sep 17 00:00:00 2001 From: Tomas Kraus Date: Fri, 6 Aug 2021 12:25:55 +0200 Subject: [PATCH 2/2] Added build configuration. Signed-off-by: Tomas Kraus --- .github/workflows/maven.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..9f86451 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,35 @@ +# +# Copyright (c) 2021 Contributors to the Eclipse Foundation +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License v. 2.0 which is available at +# http://www.eclipse.org/legal/epl-2.0, +# or the Eclipse Distribution License v. 1.0 which is available at +# http://www.eclipse.org/org/documents/edl-v10.php. +# +# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause +# + +name: SAAJ RI + +on: [push, pull_request] + +jobs: + build: + name: Test on JDK ${{ matrix.java_version }} + runs-on: ubuntu-latest + + strategy: + matrix: + java_version: [ 11, 17-ea ] + + steps: + - name: Checkout for build + uses: actions/checkout@v2.3.4 + - name: Set up JDK + uses: actions/setup-java@v2 + with: + distribution: 'zulu' + java-version: ${{ matrix.java_version }} + - name: Verify + run: mvn -B -V -U -C -Pstaging,oss-release clean verify org.glassfish.copyright:glassfish-copyright-maven-plugin:check -Dgpg.skip=true -Doss.disallow.snapshots=false