Skip to content

Commit 3383044

Browse files
committed
Prepare initial version of corretto-24
1 parent a3a02c8 commit 3383044

File tree

5 files changed

+12
-15
lines changed

5 files changed

+12
-15
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Change Log for Amazon Corretto JDK
1+
# Change Log for Amazon Corretto 24
22

3-
The following sections describe the changes for each release of Amazon Corretto JDK.
3+
The following sections describe the changes for each release of Amazon Corretto 24.

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/corretto/corretto-jdk/issues), or [recently closed](https://github.com/corretto/corretto-jdk/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/corretto/corretto-24/issues), or [recently closed](https://github.com/corretto/corretto-24/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/corretto/corretto-jdk/labels/help%20wanted) issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/corretto/corretto-24/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
@@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif
5656

5757
## Licensing
5858

59-
See the [LICENSE](https://github.com/corretto/corretto-jdk/blob/develop/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
59+
See the [LICENSE](https://github.com/corretto/corretto-24/blob/develop/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6060

6161
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
## Corretto JDK
1+
## Corretto 24
22

33
Amazon Corretto is a no-cost, multiplatform,
44
production-ready distribution of the Open Java Development Kit (OpenJDK).
55
Corretto is used internally at Amazon for production services.
66
With Corretto, you can develop and run Java applications
77
on operating systems such as Linux, Windows, and macOS.
88

9-
This repository is used to track [OpenJDK upstream tip](https://github.com/openjdk/jdk).
9+
This repository is used to track [OpenJDK 24](https://github.com/openjdk/jdk/tree/jdk24).
1010
Please look at the branches section for more information on Feature Releases.
1111

1212
Documentation is available at [https://docs.aws.amazon.com/corretto](https://docs.aws.amazon.com/corretto).
@@ -18,10 +18,7 @@ Please read these files: "LICENSE", "ADDITIONAL_LICENSE_INFO", "ASSEMBLY_EXCEPTI
1818
### Branches
1919

2020
_develop_
21-
: The default branch. The branch that consumes development and patches to upstream jdk. Corretto builds are generated from this branch.
22-
23-
_upstream-jdk_
24-
: The branch is similar to master at [openjdk/jdk](https://github.com/openjdk/jdk). This branch merges into develop.
21+
: The default branch. The branch that consumes development and patches to upstream [openjdk/jdk:jdk23](https://github.com/openjdk/jdk/tree/jdk24). Corretto builds are generated from this branch.
2522

2623
### OpenJDK Readme
2724
```

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ allprojects {
5151
buildRoot = file("$buildDir/buildRoot")
5252
distributionDir = file("$buildDir/distributions")
5353
packageInfo = [
54-
url : "https://github.com/corretto/corretto-jdk",
54+
url : "https://github.com/corretto/corretto-24",
5555
vendor : 'Amazon',
5656
packager : 'Amazon',
5757
description : 'Amazon Corretto\'s packaging of the runtime core elements of the OpenJDK code.',
@@ -91,8 +91,8 @@ allprojects {
9191
'--with-jvm-features=zgc',
9292
"--with-version-build=${project.version.build}",
9393
'--with-version-pre=',
94-
"--with-vendor-bug-url=https://github.com/corretto/corretto-jdk/issues/",
95-
"--with-vendor-vm-bug-url=https://github.com/corretto/corretto-jdk/issues/",
94+
"--with-vendor-bug-url=https://github.com/corretto/corretto-24/issues/",
95+
"--with-vendor-vm-bug-url=https://github.com/corretto/corretto-24/issues/",
9696
'--with-vendor-name=Amazon.com Inc.',
9797
'--with-vendor-url=https://aws.amazon.com/corretto/',
9898
"--with-vendor-version-string=Corretto-${project.version.full}"

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rootProject.name = 'corretto-jdk'
1+
rootProject.name = 'corretto-24'
22

33
import org.apache.tools.ant.taskdefs.condition.Os
44

0 commit comments

Comments
 (0)