Skip to content

Commit

Permalink
Merge pull request #509 from okta/ak_update_cci_jdks
Browse files Browse the repository at this point in the history
Prep for 3.x
  • Loading branch information
arvindkrishnakumar-okta authored Jun 27, 2024
2 parents bc7c0ea + 864f316 commit 58b4777
Show file tree
Hide file tree
Showing 15 changed files with 322 additions and 220 deletions.
23 changes: 12 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,28 @@ aliases:
command: cat integration-tests/target/failsafe-reports/*dump*

jobs:
jdk8:

jdk11:
docker:
- image: cimg/openjdk:8.0.362-node
- image: cimg/openjdk:11.0.22-node
environment:
JVM_OPTS: -Xmx3200m
resource_class: large
parallelism: 3
steps: *build_steps

jdk11:
jdk17:
docker:
- image: cimg/openjdk:11.0.18-node
- image: cimg/openjdk:17.0.11-node
environment:
JVM_OPTS: -Xmx3200m
resource_class: large
parallelism: 3
steps: *build_steps

jdk17:
jdk21:
docker:
- image: cimg/openjdk:17.0.6-node
- image: cimg/openjdk:21.0.2-node
environment:
JVM_OPTS: -Xmx3200m
resource_class: large
Expand All @@ -47,7 +48,7 @@ jobs:

snyk-scan:
docker:
- image: cimg/openjdk:17.0.6-node
- image: cimg/openjdk:21.0.2-node
steps:
- checkout
- run: ./mvnw clean install -Pci -Dlicense.skip=true -Dmaven.test.skip.exec=true
Expand All @@ -64,15 +65,15 @@ workflows:
- general-platform-helpers/job-secrets-obtain:
name: cache-secrets
secret-key: "OKTA_CLIENT_ORGURL;OKTA_CLIENT_TOKEN;OKTA_AUTHN_ITS_MFAENROLLGROUPID"
- jdk8:
requires:
- cache-secrets
- jdk11:
requires:
- cache-secrets
- jdk17:
requires:
- cache-secrets
- jdk21:
requires:
- cache-secrets
- general-platform-helpers/job-semgrep-prepare:
name: semgrep-prepare
- general-platform-helpers/job-semgrep-scan:
Expand All @@ -82,7 +83,7 @@ workflows:
- general-platform-helpers/job-snyk-prepare:
name: prepare-snyk
requires:
- jdk17
- jdk21
- snyk-scan:
name: execute-snyk
requires:
Expand Down
Binary file modified .mvn/wrapper/maven-wrapper.jar
100755 → 100644
Binary file not shown.
32 changes: 19 additions & 13 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
#
# Copyright 2018 Okta, Inc.
# Copyright 2018-Present Okta, Inc.
#
# Licensed 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
# 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
# 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.6.0/apache-maven-3.6.0-bin.zip
# 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.
wrapperVersion=3.3.2
distributionType=bin
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

The Okta Authentication SDK is a convenience wrapper around [Okta's Authentication API](https://developer.okta.com/docs/api/resources/authn.html).

### Prerequisites

* Java 11 or later

## Is This Library Right for Me?

This SDK is a convenient HTTP client wrapper for [Okta's Authentication API](https://developer.okta.com/docs/api/resources/authn/). These APIs are powerful and useful if you need to achieve one of these cases:
Expand Down
2 changes: 1 addition & 1 deletion android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>okta-authn-sdk-android</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>okta-authn-sdk-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>okta-authn-sdk-coverage</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/doc-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion examples/example-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion examples/shiro-mustache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>okta-authn-sdk-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>com.okta.authn.sdk</groupId>
<artifactId>okta-authn-parent</artifactId>
<version>2.0.12-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>okta-authn-sdk-integration-tests</artifactId>
Expand Down
Loading

0 comments on commit 58b4777

Please sign in to comment.