Skip to content

Commit

Permalink
Use opprop jdk and correct commits for every plume-lib library (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Mar 29, 2024
1 parent 32f25d1 commit 3ed474c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions checker/bin-devel/test-plume-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,33 @@ for PACKAGE in "${PACKAGES[@]}"; do
if [ "${PACKAGE}" = "plume-util" ]; then
(cd "${PACKAGEDIR}" && git checkout 5a8399cd5a38408c129ebc8ee8c198b439634fd0 && cd ..)
fi
if [ "${PACKAGE}" = "bcel-util" ]; then
(cd "${PACKAGEDIR}" && git checkout be503985957cc29d9b371b3241761f21bd261cb0 && cd ..)
fi
if [ "${PACKAGE}" = "bibtex-clean" ]; then
(cd "${PACKAGEDIR}" && git checkout 79248b39a13adcd46268f056df6502b285a8e0b0 && cd ..)
fi
if [ "${PACKAGE}" = "html-pretty-print" ]; then
(cd "${PACKAGEDIR}" && git checkout 3cb838f7fa30e6de2a9c6a9b102bb9f517d2dd15 && cd ..)
fi
if [ "${PACKAGE}" = "icalavailable" ]; then
(cd "${PACKAGEDIR}" && git checkout d7857ae0aa0cedccac2c623fff8525ba3978006a && cd ..)
fi
if [ "${PACKAGE}" = "javadoc-lookup" ]; then
(cd "${PACKAGEDIR}" && git checkout 83e5bfabd3fdaa5d725520b1aa33b25bb6797d37 && cd ..)
fi
if [ "${PACKAGE}" = "lookup" ]; then
(cd "${PACKAGEDIR}" && git checkout 6a138a1abde5b20eaefcefab2f815463ddd5013c && cd ..)
fi
if [ "${PACKAGE}" = "multi-version-control" ]; then
(cd "${PACKAGEDIR}" && git checkout e75c9e0c74823a528239525e280e097490a643a9 && cd ..)
fi
if [ "${PACKAGE}" = "require-javadoc" ]; then
(cd "${PACKAGEDIR}" && git checkout 6eea833f403509bad8923430a29843d272e524cc && cd ..)
fi
if [ "${PACKAGE}" = "reflection-util" ]; then
(cd "${PACKAGEDIR}" && git checkout cd00c7659a6508436b978955b08896bb7a461e61 && cd ..)
fi
# Uses "compileJava" target instead of "assemble" to avoid the javadoc error "Error fetching URL:
# https://docs.oracle.com/en/java/javase/17/docs/api/" due to network problems.
echo "About to call ./gradlew --console=plain -PcfLocal compileJava"
Expand Down
2 changes: 1 addition & 1 deletion framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ task cloneTypetoolsJdk() {
'-q',
'--depth',
'1',
'https://github.com/eisop/jdk.git',
'https://github.com/opprop/jdk.git',
'jdk'
]
}
Expand Down

0 comments on commit 3ed474c

Please sign in to comment.