{"id":19505394,"url":"https://github.com/jrebirth/jfx-presentation","last_synced_at":"2025-07-19T02:02:20.286Z","repository":{"id":2537435,"uuid":"3514638","full_name":"JRebirth/JFX-Presentation","owner":"JRebirth","description":"JavaFX 2 Presentation Demo","archived":false,"fork":false,"pushed_at":"2017-02-28T07:47:50.000Z","size":12288,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-26T01:41:42.421Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"www.jrebirth.org/demo.html","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JRebirth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-02-22T13:08:54.000Z","updated_at":"2016-10-18T11:07:53.000Z","dependencies_parsed_at":"2022-09-09T06:21:22.921Z","dependency_job_id":null,"html_url":"https://github.com/JRebirth/JFX-Presentation","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JRebirth/JFX-Presentation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JRebirth%2FJFX-Presentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JRebirth%2FJFX-Presentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JRebirth%2FJFX-Presentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JRebirth%2FJFX-Presentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JRebirth","download_url":"https://codeload.github.com/JRebirth/JFX-Presentation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JRebirth%2FJFX-Presentation/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265871805,"owners_count":23842071,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-10T22:30:16.223Z","updated_at":"2025-07-19T02:02:20.241Z","avatar_url":"https://github.com/JRebirth.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"JFX-Presentation\n=====================\n\nPresentation of JavaFX 2 in Dog Fooding way\n\nLatest slides are available on [Slideshare](https://www.slideshare.net/SbastienBordes/la-revolution-javafx-at-breizhcamp-2012)\n\nDownload Binaries\n-----------\n\nAll binaries are stored on our binaries server : http://apps.jrebirth.org/breizhcamp\n\nLatest one are here : http://apps.jrebirth.org/breizhcamp/javafx2-2.0.0.zip\n\n\nBuild it\n-----------\n\nRequires [Git](http://git-scm.com/), [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html) and [Maven](http://maven.apache.org/).\n\n    git clone https://github.com/JRebirth/JFX-Presentation.git\n    cd JFX-Presentation/org.jrebirth.af.presentation.javafx2\n    mvn clean install\n\n\nHow to Build Snaphot Versions\n---------------------\n\nYou can build __RELEASE__ versions by simply using [Maven Central](http://search.maven.org) or [JCenter](jcenter.bintray.com) repositories to grab all dependencies.\n\nAs this project depends on 2 others repositories, if you want to build __SNAPSHOT__ version you have 2 options:\n* Use [oss.jfrog.org](http://oss.jfrog.org) repository into your maven settings to grap SNAPSHOT dependencies\n* Build yourself [JRebirth-RIA-POM](https://github.com/JRebirth/JRebirth-RIA-POM) and [JRebirth](https://github.com/JRebirth/JRebirth) repositories\n \n\n__Maven Settings.xml file to use oss.jfrog.org__\n\n``` xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003csettings xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd\" xmlns=\"http://maven.apache.org/SETTINGS/1.1.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\u003e\n  \u003cprofiles\u003e\n    \u003cprofile\u003e\n      \u003crepositories\u003e\n        \u003crepository\u003e\n          \u003csnapshots\u003e\n            \u003cenabled\u003efalse\u003c/enabled\u003e\n          \u003c/snapshots\u003e\n          \u003cid\u003ecentral\u003c/id\u003e\n          \u003cname\u003elibs-release\u003c/name\u003e\n          \u003curl\u003ehttps://oss.jfrog.org/artifactory/libs-release\u003c/url\u003e\n        \u003c/repository\u003e\n        \u003crepository\u003e\n          \u003csnapshots /\u003e\n          \u003cid\u003esnapshots\u003c/id\u003e\n          \u003cname\u003elibs-snapshot\u003c/name\u003e\n          \u003curl\u003ehttps://oss.jfrog.org/artifactory/libs-snapshot\u003c/url\u003e\n        \u003c/repository\u003e\n      \u003c/repositories\u003e\n      \u003cpluginRepositories\u003e\n        \u003cpluginRepository\u003e\n          \u003csnapshots\u003e\n            \u003cenabled\u003efalse\u003c/enabled\u003e\n          \u003c/snapshots\u003e\n          \u003cid\u003ecentral\u003c/id\u003e\n          \u003cname\u003eplugins-release\u003c/name\u003e\n          \u003curl\u003ehttps://oss.jfrog.org/artifactory/plugins-release\u003c/url\u003e\n        \u003c/pluginRepository\u003e\n        \u003cpluginRepository\u003e\n          \u003csnapshots /\u003e\n          \u003cid\u003esnapshots\u003c/id\u003e\n          \u003cname\u003eplugins-snapshot\u003c/name\u003e\n          \u003curl\u003ehttps://oss.jfrog.org/artifactory/plugins-snapshot\u003c/url\u003e\n        \u003c/pluginRepository\u003e\n      \u003c/pluginRepositories\u003e\n      \u003cid\u003eartifactory\u003c/id\u003e\n    \u003c/profile\u003e\n  \u003c/profiles\u003e\n  \u003cactiveProfiles\u003e\n    \u003cactiveProfile\u003eartifactory\u003c/activeProfile\u003e\n  \u003c/activeProfiles\u003e\n\u003c/settings\u003e\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjrebirth%2Fjfx-presentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjrebirth%2Fjfx-presentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjrebirth%2Fjfx-presentation/lists"}