René's URL Explorer Experiment


Title: Fix this project and upgrade it to the latest JRuby · Issue #5 · scijava/scripting-jruby · GitHub

Open Graph Title: Fix this project and upgrade it to the latest JRuby · Issue #5 · scijava/scripting-jruby

X Title: Fix this project and upgrade it to the latest JRuby · Issue #5 · scijava/scripting-jruby

Description: I tried to upgrade this component to the new jruby-base, which has proper dependencies with no uber-JARs (see jruby/jruby#6205 for details). Here is the patch I tried diff --git a/pom.xml b/pom.xml index 840d79a..31198db 100644 --- a/pom...

Open Graph Description: I tried to upgrade this component to the new jruby-base, which has proper dependencies with no uber-JARs (see jruby/jruby#6205 for details). Here is the patch I tried diff --git a/pom.xml b/pom.xml...

X Description: I tried to upgrade this component to the new jruby-base, which has proper dependencies with no uber-JARs (see jruby/jruby#6205 for details). Here is the patch I tried diff --git a/pom.xml b/pom.xml...

Opengraph URL: https://github.com/scijava/scripting-jruby/issues/5

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Fix this project and upgrade it to the latest JRuby","articleBody":"I tried to upgrade this component to the new jruby-base, which has proper dependencies with no uber-JARs (see jruby/jruby#6205 for details).\r\n\r\n\u003cdetails\u003e\u003csummary\u003eHere is the patch I tried\u003c/summary\u003e\r\n\r\n```diff\r\ndiff --git a/pom.xml b/pom.xml\r\nindex 840d79a..31198db 100644\r\n--- a/pom.xml\r\n+++ b/pom.xml\r\n@@ -93,8 +93,8 @@ Institute of Molecular Cell Biology and Genetics.\u003c/license.copyrightOwners\u003e\r\n                \u003c!-- NB: Deploy releases to the SciJava Maven repository. --\u003e\r\n                \u003creleaseProfiles\u003esign,deploy-to-scijava\u003c/releaseProfiles\u003e\r\n \r\n-               \u003cjruby.version\u003e9.1.17.0\u003c/jruby.version\u003e\r\n-               \u003cjruby-core.version\u003e${jruby.version}\u003c/jruby-core.version\u003e\r\n+               \u003cjruby.version\u003e9.3.3.0\u003c/jruby.version\u003e\r\n+               \u003cjruby-base.version\u003e${jruby.version}\u003c/jruby-base.version\u003e\r\n                \u003cjruby-stdlib.version\u003e${jruby.version}\u003c/jruby-stdlib.version\u003e\r\n        \u003c/properties\u003e\r\n \r\n@@ -108,8 +108,8 @@ Institute of Molecular Cell Biology and Genetics.\u003c/license.copyrightOwners\u003e\r\n                \u003c!-- Third-party dependencies --\u003e\r\n                \u003cdependency\u003e\r\n                        \u003cgroupId\u003eorg.jruby\u003c/groupId\u003e\r\n-                       \u003cartifactId\u003ejruby-core\u003c/artifactId\u003e\r\n-                       \u003cversion\u003e${jruby-core.version}\u003c/version\u003e\r\n+                       \u003cartifactId\u003ejruby-base\u003c/artifactId\u003e\r\n+                       \u003cversion\u003e${jruby-base.version}\u003c/version\u003e\r\n                \u003c/dependency\u003e\r\n                \u003cdependency\u003e\r\n                        \u003cgroupId\u003eorg.jruby\u003c/groupId\u003e\r\n```\r\n\r\n\u003c/details\u003e\r\n\r\nUnfortunately, the tests then fail as follows:\r\n\r\n```\r\norg.jruby.exceptions.NoMethodError: (NoMethodError) undefined method `getLanguageByName' for nil:NilClass\r\n\tat RUBY.\u003cmain\u003e(hello.rb:3)\r\n[ERROR] Tests run: 3, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 2.524 s \u003c\u003c\u003c FAILURE! - in org.scijava.plugins.scripting.jruby.JRubyTest\r\n[ERROR] testParameters(org.scijava.plugins.scripting.jruby.JRubyTest)  Time elapsed: 0.132 s  \u003c\u003c\u003c FAILURE!\r\njava.lang.AssertionError: expected:\u003cRuby\u003e but was:\u003cnull\u003e\r\n\tat org.scijava.plugins.scripting.jruby.JRubyTest.testParameters(JRubyTest.java:97)\r\n\r\n[ERROR] testLocals(org.scijava.plugins.scripting.jruby.JRubyTest)  Time elapsed: 0.007 s  \u003c\u003c\u003c FAILURE!\r\njava.lang.AssertionError: expected:\u003c17\u003e but was:\u003cnull\u003e\r\n\tat org.scijava.plugins.scripting.jruby.JRubyTest.testLocals(JRubyTest.java:77)\r\n```\r\n\r\n\u003cdetails\u003e\u003csummary\u003eHere are the dependency changes this update causes\u003c/summary\u003e\r\n\r\n```diff\r\ndiff --git a/before b/after\r\nindex c4aca19..ae41d51 100644\r\n--- a/before\r\n+++ b/after\r\n@@ -1,26 +1,31 @@\r\n-com.github.jnr jffi jar 1.2.16 compile\r\n-com.github.jnr jffi jar native 1.2.16 compile\r\n-com.github.jnr jnr-constants jar 0.9.9 compile\r\n-com.github.jnr jnr-enxio jar 0.16 compile\r\n-com.github.jnr jnr-netdb jar 1.1.6 compile\r\n-com.github.jnr jnr-posix jar 3.0.44 compile\r\n-com.github.jnr jnr-unixsocket jar 0.17 compile\r\n+com.github.jnr jffi jar 1.3.9 compile\r\n+com.github.jnr jffi jar native 1.3.9 compile\r\n+com.github.jnr jnr-a64asm jar 1.0.0 compile\r\n+com.github.jnr jnr-constants jar 0.10.3 compile\r\n+com.github.jnr jnr-enxio jar 0.32.13 compile\r\n+com.github.jnr jnr-ffi jar 2.2.11 compile\r\n+com.github.jnr jnr-netdb jar 1.2.0 compile\r\n+com.github.jnr jnr-posix jar 3.1.15 compile\r\n+com.github.jnr jnr-unixsocket jar 0.38.17 compile\r\n com.github.jnr jnr-x86asm jar 1.0.2 compile\r\n-com.headius invokebinder jar 1.10 compile\r\n-com.headius modulator jar 1.0 compile\r\n-com.headius options jar 1.4 compile\r\n-com.headius unsafe-fences jar 1.0 compile\r\n+com.headius backport9 jar 1.12 compile\r\n+com.headius invokebinder jar 1.12 compile\r\n+com.headius options jar 1.6 compile\r\n com.jcraft jzlib jar 1.1.3 compile\r\n-com.martiansoftware nailgun-server jar 0.9.1 compile\r\n joda-time joda-time jar 2.10.1 compile\r\n junit junit jar 4.12 test\r\n+me.qmx.jitescript jitescript jar 0.4.1 compile\r\n org.bushe eventbus jar 1.4 compile\r\n org.hamcrest hamcrest-core jar 1.3 test\r\n-org.jruby.extras bytelist jar 1.0.15 compile\r\n-org.jruby.jcodings jcodings jar 1.0.27 compile\r\n-org.jruby.joni joni jar 2.1.15 compile\r\n+org.jruby.jcodings jcodings jar 1.0.55 compile\r\n+org.jruby.joni joni jar 2.1.40 compile\r\n org.jruby dirgra jar 0.3 compile\r\n-org.jruby jruby-core jar 9.1.17.0 compile\r\n-org.jruby jruby-stdlib jar 9.1.17.0 compile\r\n+org.jruby jruby-base jar 9.3.3.0 compile\r\n+org.jruby jruby-stdlib jar 9.3.3.0 compile\r\n+org.ow2.asm asm-analysis jar 9.2 compile\r\n+org.ow2.asm asm-commons jar 9.2 compile\r\n+org.ow2.asm asm-tree jar 9.2 compile\r\n+org.ow2.asm asm-util jar 9.2 compile\r\n+org.ow2.asm asm jar 9.2 compile\r\n org.scijava parsington jar 1.0.4 compile\r\n org.scijava scijava-common jar 2.77.0 compile\r\n```\r\n\r\n\u003c/details\u003e\r\n\r\nI also tried with jruby-core 9.3.3.0 (i.e. not switching to jruby-base), and the same problem occurs. Dependency-wise though, the newer jruby-core bundles more things internally, so the dependency list becomes quite short in that case.\r\n\r\nIt must be a change in the behavior of JRuby. Maybe a new bug, or maybe something we need to adjust for. Further investigation needed.","author":{"url":"https://github.com/ctrueden","@type":"Person","name":"ctrueden"},"datePublished":"2022-02-19T00:32:39.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/5/scripting-jruby/issues/5"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:19f64c61-c82e-e68d-bbc7-c35d18e45473
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9036:47A9E:285FD9:392F16:696FA314
html-safe-nonce63ef7c8bf85c8bf318893e182061b99f245ecae3de1fdda66776fc97d65d803b
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MDM2OjQ3QTlFOjI4NUZEOTozOTJGMTY6Njk2RkEzMTQiLCJ2aXNpdG9yX2lkIjoiNzY2NzE4Nzk4MDA1Njg5NjI3NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac233f08d1a24e9f0616899869dbbcfe5a4f16ffcc14a524503c8107bfed774b69
hovercard-subject-tagissue:1144024524
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/scijava/scripting-jruby/5/issue_layout
twitter:imagehttps://opengraph.githubassets.com/b96caa66b8190d3186555a0fa9d9e325ed124eda519ef94c76f185b308e4df69/scijava/scripting-jruby/issues/5
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/b96caa66b8190d3186555a0fa9d9e325ed124eda519ef94c76f185b308e4df69/scijava/scripting-jruby/issues/5
og:image:altI tried to upgrade this component to the new jruby-base, which has proper dependencies with no uber-JARs (see jruby/jruby#6205 for details). Here is the patch I tried diff --git a/pom.xml b/pom.xml...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamectrueden
hostnamegithub.com
expected-hostnamegithub.com
None0ca8d8c65612640b9a1a588b3eed68222ca723ed2d028b18fe81b28936d535eb
turbo-cache-controlno-preview
go-importgithub.com/scijava/scripting-jruby git https://github.com/scijava/scripting-jruby.git
octolytics-dimension-user_id1262770
octolytics-dimension-user_loginscijava
octolytics-dimension-repository_id19124543
octolytics-dimension-repository_nwoscijava/scripting-jruby
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id19124543
octolytics-dimension-repository_network_root_nwoscijava/scripting-jruby
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release95f60616ce2765d1114fe6da4af405a58c6d26d2
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/scijava/scripting-jruby/issues/5#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fscijava%2Fscripting-jruby%2Fissues%2F5
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fscijava%2Fscripting-jruby%2Fissues%2F5
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=scijava%2Fscripting-jruby
Reloadhttps://github.com/scijava/scripting-jruby/issues/5
Reloadhttps://github.com/scijava/scripting-jruby/issues/5
Reloadhttps://github.com/scijava/scripting-jruby/issues/5
scijava https://github.com/scijava
scripting-jrubyhttps://github.com/scijava/scripting-jruby
Notifications https://github.com/login?return_to=%2Fscijava%2Fscripting-jruby
Fork 0 https://github.com/login?return_to=%2Fscijava%2Fscripting-jruby
Star 0 https://github.com/login?return_to=%2Fscijava%2Fscripting-jruby
Code https://github.com/scijava/scripting-jruby
Issues 1 https://github.com/scijava/scripting-jruby/issues
Pull requests 0 https://github.com/scijava/scripting-jruby/pulls
Actions https://github.com/scijava/scripting-jruby/actions
Projects 0 https://github.com/scijava/scripting-jruby/projects
Wiki https://github.com/scijava/scripting-jruby/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/scijava/scripting-jruby/security
Please reload this pagehttps://github.com/scijava/scripting-jruby/issues/5
Insights https://github.com/scijava/scripting-jruby/pulse
Code https://github.com/scijava/scripting-jruby
Issues https://github.com/scijava/scripting-jruby/issues
Pull requests https://github.com/scijava/scripting-jruby/pulls
Actions https://github.com/scijava/scripting-jruby/actions
Projects https://github.com/scijava/scripting-jruby/projects
Wiki https://github.com/scijava/scripting-jruby/wiki
Security https://github.com/scijava/scripting-jruby/security
Insights https://github.com/scijava/scripting-jruby/pulse
New issuehttps://github.com/login?return_to=https://github.com/scijava/scripting-jruby/issues/5
New issuehttps://github.com/login?return_to=https://github.com/scijava/scripting-jruby/issues/5
Fix this project and upgrade it to the latest JRubyhttps://github.com/scijava/scripting-jruby/issues/5#top
https://github.com/ctrueden
https://github.com/ctrueden
https://github.com/ctrueden
ctruedenhttps://github.com/ctrueden
on Feb 19, 2022https://github.com/scijava/scripting-jruby/issues/5#issue-1144024524
jruby/jruby#6205https://github.com/jruby/jruby/issues/6205
ctruedenhttps://github.com/ctrueden
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.