Skip to content

Commit 89ffa27

Browse files
author
Ivan Franchin
committed
Project upgrade
- upgrade to spring-boot 3.3.4; - upgrade to Java 21; - upgrade to okta-spring 3.0.7; - upgrade to wrapperVersion to 3.3.2 and apache-maven to 3.9.9; - upgrade to springdoc-openapi 2.6.0; - upgrade to elasticsearch docker image 8.13.4 - upgrade npm packages; - update README.
1 parent 5174906 commit 89ffa27

File tree

9 files changed

+471
-637
lines changed

9 files changed

+471
-637
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ On [ivangfr.github.io](https://ivangfr.github.io), I have compiled my Proof-of-C
2525

2626
- ### jobs-api
2727

28-
[`Spring Boot`](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/) Web Java application that exposes a REST API for managing jobs. It has some endpoints that are secured. `Okta` is used to handle authentication and authorization.
28+
[`Spring Boot`](https://docs.spring.io/spring-boot/index.html) Web Java application that exposes a REST API for managing jobs. The job data are stored in [Elasticsearch](https://www.elastic.co/elasticsearch) It has some endpoints that are secured. `Okta` is used to handle authentication and authorization.
2929

3030
The table below shows the endpoins, whether they are secured or not, and the authorization role required to access the secured ones.
3131

@@ -46,7 +46,7 @@ On [ivangfr.github.io](https://ivangfr.github.io), I have compiled my Proof-of-C
4646

4747
## Prerequisites
4848

49-
- [`Java 17+`](https://www.oracle.com/java/technologies/downloads/#java17)
49+
- [`Java 21+`](https://www.oracle.com/java/technologies/downloads/#java21)
5050
- [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
5151
- [`Docker`](https://www.docker.com/)
5252
- [`Okta` account](https://developer.okta.com/signup/)

docker-compose.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
version: "3.8"
2-
31
services:
42

53
elasticsearch:
6-
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.4
4+
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.4
75
container_name: elasticsearch
86
restart: unless-stopped
97
ports:
-61.1 KB
Binary file not shown.
Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
wrapperVersion=3.3.2
18+
distributionType=only-script
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip

0 commit comments

Comments
 (0)