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

Upgrading to jdk-21u. #19

Merged
merged 1 commit into from
Sep 7, 2023
Merged
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
8 changes: 4 additions & 4 deletions make/langtools/netbeans/nb-javac/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@
<target name="-checkout-jdk" depends="-init-project,-check-jdk.is.available" unless="jdk.is.available">
<exec failonerror="true" executable="git" dir="${jdk.repo}/..">
<arg value="clone"/>
<arg value="--depth=1"/>
<arg value="--branch"/>
<arg value="${jdk.git.commit}"/>
<arg value="--single-branch"/>
<arg value="${jdk.git.url}"/>
<arg value="jdk"/>
</exec>
<exec failonerror="true" executable="git" dir="${jdk.repo}">
<arg value="checkout"/>
<arg value="${jdk.git.commit}"/>
</exec>
</target>

<target name="-pre-init">
Expand Down
7 changes: 4 additions & 3 deletions make/langtools/netbeans/nb-javac/nbproject/project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
jdk.git.url=https://github.com/openjdk/jdk21
jdk.git.commit=jdk-21+26
nb-javac-ver=${jdk.git.commit}
jdk.git.url=https://github.com/openjdk/jdk21u
jdk.git.commit=aef25fcac1ea29709a021e2449498b10809600b1
#nb-javac-ver=${jdk.git.commit}
nb-javac-ver=jdk-21u

debug.modulepath=\
${run.modulepath}
Expand Down
Loading