Skip to content

Commit

Permalink
initial update to java23
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Oct 9, 2024
1 parent 19b5805 commit 7b728dd
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 71 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/.bash_history
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ rm -rf jdk-18_linux-x64_bin.deb
git rebase -i main
git rebase -i master
git stash
export tempPassword="g8Z24I8DoAY39MOvLCbQbrAR7VQyIoGXSIY20kRWfB4="
export tempPassword="uzsmJV29aLxsikOElqENg9O2dUkuY6Q4zg6ysYaO4HE="
mvn run tempPassword
k6
npx k6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ jobs:
#- run: |
# make bootstrap
# make release
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: "22"
java-version: "23"
distribution: "temurin"
- name: run mvn clean package
run: ./mvnw clean package -Ddependency-check.skip=true -Dmaven.test.skip=true
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ Please be sure to take a careful look at our [Code of Conduct](https://github.co
2. **Node.Js 20**
[_Node.Js_](https://nodejs.org/en/) is an open-source library and a cross-platform JavaScript **runtime environment** specifically for running web applications outside one's browser.

3. **JDK-22**
[_JDK_](https://www.oracle.com/java/technologies/downloads/#java22) is a tool used in development and testing programs written in the Java programming language.
3. **JDK-23**
[_JDK_](https://www.oracle.com/java/technologies/downloads/#java23) is a tool used in development and testing programs written in the Java programming language.

4. **IntelliJ IDEA**
[_IntelliJ IDEA_](https://www.jetbrains.com/idea/download) is an integrated development environment basically an **IDE** written in Java for developing software written in Java, Kotlin, Groovy etc.
Expand Down Expand Up @@ -190,9 +190,9 @@ Select **_google-java-format Settings_** and click enable.

Open **_File > Project structure _**.

In the tab `Project` make sure that an SDK of version `22` is selected (e.g. `openjdk-22`, `oraclejdk-22` or just `22` depending on which Java JDK variant you installed).
In the tab `Project` make sure that an SDK of version `23` is selected (e.g. `openjdk-23`, `oraclejdk-23` or just `23` depending on which Java JDK variant you installed).

In the tab `SDKs` make sure that an SDK of version `22` is selected.
In the tab `SDKs` make sure that an SDK of version `23` is selected.


### Step 6: Reload the project
Expand Down
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

function secret() {
var password = "gPDAvOc=" + 9 + "oscR" + 6 + "HmU=" + 2 + "iwPi" + 7;
var password = "MgvPITU=" + 9 + "+EVD" + 6 + "1wg=" + 2 + "GaRN" + 7;
return password;
}
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@
<gatling.version>3.12.0</gatling.version>
<gcp.sdk.version>5.7.0</gcp.sdk.version>
<github.button.version>2.14.1</github.button.version>
<java.version>22</java.version>
<java.version>23</java.version>
<jquery.version>3.7.1</jquery.version>
<jruby.version>9.4.8.0</jruby.version>
<lombok.version>1.18.34</lombok.version>
<maven.compiler.target>22</maven.compiler.target>
<maven.compiler.proc>full</maven.compiler.proc>
<maven.compiler.target>23</maven.compiler.target>
<spring.cloud-version>2023.0.3</spring.cloud-version>
<spring.security.version>6.2.3</spring.security.version>
<system-stubs-jupiter.version>2.1.7</system-stubs-jupiter.version>
Expand Down Expand Up @@ -511,9 +512,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>22</source>
<target>22</target>
<source>23</source>
<target>23</target>
</configuration>
</plugin>
<plugin>
Expand Down
Loading

0 comments on commit 7b728dd

Please sign in to comment.