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

Carlosroman/jdk 21 update #230

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
3 changes: 0 additions & 3 deletions .circleci/Dockerfile-openjdk7

This file was deleted.

30 changes: 15 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,43 +19,42 @@ default_steps: &default_steps
- checkout

- run: |
mvn clean install $MVN_EXTRA_OPTS
./mvnw clean install $MVN_EXTRA_OPTS

jobs:
openjdk7:
docker:
- image: jfullaondo/openjdk:7
- image: openjdk:7-jdk
environment:
MVN_EXTRA_OPTS: -Dcheckstyle.version=2.15 -Dcheckstyle.skip
<<: *default_steps
openjdk8:
docker: &jdk8
- image: circleci/openjdk:8u242
<<: *default_steps
openjdk9:
docker:
- image: circleci/openjdk:9.0.4-12
- image: cimg/openjdk:8.0
<<: *default_steps
openjdk11:
docker:
- image: circleci/openjdk:11.0.2
- image: cimg/openjdk:11.0
<<: *default_steps
openjdk13:
docker:
- image: circleci/openjdk:13.0.2-buster
- image: cimg/openjdk:13.0
<<: *default_steps
openjdk17:
docker:
- image: cimg/openjdk:17.0
<<: *default_steps
openjdk14:
openjdk21:
docker:
- image: circleci/openjdk:14.0.2-buster
- image: cimg/openjdk:21.0
<<: *default_steps

windows-openjdk12:
executor: win/default
steps:
- checkout
- run: |
choco install maven
- run: |
mvn clean install
./mvnw.cmd clean install

openjdk8-jnr-exclude:
docker: *jdk8
Expand All @@ -75,9 +74,10 @@ workflows:
jobs:
- openjdk7
- openjdk8
- openjdk9
- openjdk11
- openjdk13
- openjdk17
- openjdk21
- windows-openjdk12
- openjdk8-jnr-exclude
- openjdk8-jnr-latest
Binary file added .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
18 changes: 18 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.8/apache-maven-3.8.8-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
Loading