{"id":19111585,"url":"https://github.com/adminfaces/admin-showcase","last_synced_at":"2026-05-31T21:30:17.478Z","repository":{"id":48300110,"uuid":"78338749","full_name":"adminfaces/admin-showcase","owner":"adminfaces","description":"AdminFaces Showcase - https://adminfaces.github.io/admin-showcase/","archived":false,"fork":false,"pushed_at":"2021-10-17T17:12:23.000Z","size":22686,"stargazers_count":82,"open_issues_count":5,"forks_count":39,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-01-03T04:31:30.052Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","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/adminfaces.png","metadata":{"files":{"readme":"README.adoc","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":"2017-01-08T11:29:26.000Z","updated_at":"2024-12-15T06:50:43.000Z","dependencies_parsed_at":"2022-08-12T19:41:32.474Z","dependency_job_id":null,"html_url":"https://github.com/adminfaces/admin-showcase","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adminfaces%2Fadmin-showcase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adminfaces%2Fadmin-showcase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adminfaces%2Fadmin-showcase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adminfaces%2Fadmin-showcase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adminfaces","download_url":"https://codeload.github.com/adminfaces/admin-showcase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240165302,"owners_count":19758355,"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-09T04:29:03.959Z","updated_at":"2026-05-31T21:30:17.410Z","avatar_url":"https://github.com/adminfaces.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Admin Showcase\n:page-layout: base\n:source-language: java\n:icons: font\n:linkattrs:\n:sectanchors:\n:sectlink:\n:numbered:\n:doctype: book\n:toc: preamble\n:tip-caption: :bulb:\n:note-caption: :information_source:\n:important-caption: :heavy_exclamation_mark:\n:caution-caption: :fire:\n:warning-caption: :warning:\n\nimage:https://travis-ci.org/adminfaces/admin-showcase.svg[Build Status (Travis CI), link=https://travis-ci.org/adminfaces/admin-showcase]\nimage:https://badges.gitter.im/Join%20Chat.svg[link=\"https://gitter.im/adminfaces?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge\"]\n\n*AdminFaces* showcase application.\n\nimage:showcase.png[link=\"https://raw.githubusercontent.com/adminfaces/admin-showcase/master/showcase.png\"]\n\n\n== Demo \n\nShowcase is available on https://adminfaces.github.io/admin-showcase/[Openshift here^].\n\nIMPORTANT: The demo runs on the Openshift starter which is a platform used just for testing and not for production. So it's likely the showcase may be slow or *even down*.\n\n== Running locally\n\nThere are several ways to run Admin Showcase on your machine. Just clone this repository and use one of the alternatives described below.\n\n=== Using an application server\n\n\nAdmin Showcase is compatible with most JavaEE 6 and Java EE 8 application servers.\n\nJust build the application with maven using `mvn clean package -DskipTests` and deploy the resulting `showcase.war` into a JavaEE 6 or greater server.\n\nNOTE: No configuration is needed.\n\nFollowing is the list of tested servers:\n\n.Supported Application Servers\n\nThis application is compatible with `Java EE 6/7/8` application servers, tested with:\n\n* http://wildfly.org/downloads/[WildFly *8.2.0* to *13.0.0*^]\n* https://developers.redhat.com/download-manager/file/jboss-eap-6.4.0.GA.zip[JBoss EAP *6.4*^]\n* http://tomee.apache.org/downloads.html[Tomee *7.0.2* Web profile and *1.7.4* Web]\n* http://www.payara.fish/all_downloads[Payara *4.1.1.164* Web profile]\n* https://developer.ibm.com/wasdev/downloads/liberty-profile-using-non-eclipse-environments/[WebSphere Liberty profile *16.0.0.4*^]\n\nIMPORTANT: To run on `JavaEE 8` application servers such as `Wildfly 16` you'ĺl need to upgrade OmniFaces to version 3.x.\n\n=== WildFly Swarm\n\nThis showcase is http://wildfly-swarm.io/[Wildfly Swarm^] compatible, just run the following command:\n\n----\nmvn wildfly-swarm:run  -Pswarm\n----\n\nand access `http://localhost:8080/showcase`.\n\n=== Docker\n\nYou can run this showcase via docker through the following command:\n\n----\ndocker run -it -p 8080:8080 rmpestano/admin-showcase\n----\n\nTIP: use `build.and-run.sh` to easily run the application via docker.\n\n== Testing\n\nTo execute functional tests you need to activate the `tests` profile and choose the application server also using a maven profile, ex:\n\n----\nmvn clean package -P tests -P wildfly8-managed\n----\n\nBy default tests run on chrome, to change the webdriver you need to use the property `browser`:\n\n----\nmvn test -Ptomee-remote -Dbrowser=phantomjs\n----\n\nWARNING: See the chrome driver version the tests are https://github.com/adminfaces/admin-showcase/blob/master/src/test/resources/arquillian.xml#L42[using here^] and update your chrome browser according to https://sites.google.com/a/chromium.org/chromedriver/downloads[this page.^] (pay attention to the *supports chrome* label).\n\n\n== Documentation\n\nDocumentation can be found here: https://adminfaces.github.io/site/#Documentation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadminfaces%2Fadmin-showcase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadminfaces%2Fadmin-showcase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadminfaces%2Fadmin-showcase/lists"}