Skip to content

Commit

Permalink
update.
Browse files Browse the repository at this point in the history
  • Loading branch information
turbou committed Nov 16, 2023
1 parent ce15d6d commit 85eed98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions files/Javaエージェント.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Javaランタイム
IBM 8
Oracle 8 *バージョン11以降はOpenJDKのサポートに従う
OpenJDK 8、11、12、13、14、15、16、17 、18、19 、20 、21
OpenJDK 8、11、12、13、14、15、16、17 、18、19 、20 、21 、22
OpenJDKのサポートは、ここに示す現在のサポート対象バージョンの範囲内で、全ての公開中のビルドで動作するように設計されています。一般的によく利用されるAzulやAmazon Correttoなどもサポート対象のJDKのカテゴリに入ります。
サポート対象外:
JDKプレビュー機能
Expand Down Expand Up @@ -96,4 +96,4 @@ Jersey  2.25、2.28、2.36、2.6
Quarkus RESTeasy 2.15
Spring Web MVC 4.2、5.3、6.0
Spring WebFlux 5および6
Struts 2
Struts 2
3 changes: 2 additions & 1 deletion work/java_support_tech.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def main():
res = difflib.unified_diff(after_text, before_text)
res_str = '\n'.join(res)
if (len(res_str.strip()) > 0):
print('Found diff: ', title)
item_dict[title] = (url, res_str)
shutil.move('/files/%s.tmp' % title, '/files/%s.txt' % title)
except IndexError:
Expand All @@ -63,7 +64,7 @@ def main():
for k, v in item_dict.items():
feed.add_item(title=k, link=v[0], description=''.join(['<p>{0}</p>'.format(s) for s in v[1].splitlines()]), pubdate=pubdate)

if len(item_dict):
if len(item_dict) > 0:
str_val = feed.writeString('utf-8')
dom = xml.dom.minidom.parseString(str_val)
with open('/feeds/java_support_tech_update.xml','w') as fp:
Expand Down

0 comments on commit 85eed98

Please sign in to comment.