Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependencies update. Turned more compiler warnings on. #186

Merged
merged 2 commits into from
Aug 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -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
20 changes: 13 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,14 @@
<config.dir>etc/config</config.dir>
<legal.doc.source>../</legal.doc.source>

<activation.version>2.0.1</activation.version>
<xml.bind-api.version>3.0.1</xml.bind-api.version>
<xml.soap-api.version>2.0.1</xml.soap-api.version>
<activation.version>2.1.0-RC1</activation.version>
<xml.bind-api.version>4.0.0-RC1</xml.bind-api.version>
<xml.soap-api.version>3.0.0-RC1</xml.soap-api.version>

<angus-activation.version>1.0.0-M1</angus-activation.version>
<fastinfoset.version>2.0.0</fastinfoset.version>
<mimepull.version>1.9.14</mimepull.version>
<stax-ex.version>2.0.1</stax-ex.version>
<mimepull.version>1.9.15</mimepull.version>
<stax-ex.version>2.1.0-M1</stax-ex.version>
<junit.version>4.13.2</junit.version>
</properties>

Expand Down Expand Up @@ -270,6 +271,11 @@
<artifactId>jakarta.activation-api</artifactId>
<version>${activation.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>angus-activation</artifactId>
<version>${angus-activation.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
Expand All @@ -296,8 +302,8 @@
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
<version>${activation.version}</version>
</dependency>
<dependency>
Expand Down
12 changes: 10 additions & 2 deletions saaj-ri/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>9</release>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
Expand Down Expand Up @@ -185,9 +187,15 @@
</dependency>

<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>angus-activation</artifactId>
<scope>runtime</scope>
</dependency>


<dependency>
<groupId>jakarta.xml.bind</groupId>
Expand Down