{"id":20239195,"url":"https://github.com/edvin/jsf-quickstart","last_synced_at":"2026-02-04T18:02:19.426Z","repository":{"id":29535885,"uuid":"33074705","full_name":"edvin/jsf-quickstart","owner":"edvin","description":"JSF Quickstart Archetype with libsass-filter","archived":false,"fork":false,"pushed_at":"2015-03-31T10:23:49.000Z","size":124,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-25T02:54:14.622Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/edvin.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":"2015-03-29T13:52:00.000Z","updated_at":"2015-03-31T10:23:49.000Z","dependencies_parsed_at":"2022-09-06T17:31:26.283Z","dependency_job_id":null,"html_url":"https://github.com/edvin/jsf-quickstart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/edvin/jsf-quickstart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Fjsf-quickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Fjsf-quickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Fjsf-quickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Fjsf-quickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edvin","download_url":"https://codeload.github.com/edvin/jsf-quickstart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Fjsf-quickstart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29092714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-04T03:31:03.593Z","status":"ssl_error","status_checked_at":"2026-02-04T03:29:50.742Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-14T08:37:56.815Z","updated_at":"2026-02-04T18:02:19.411Z","avatar_url":"https://github.com/edvin.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jsf-quickstart\n\n## JSF Quickstart Maven archetype with libsass-filter\n\nThis Maven archetype generates a webapp configured with the following goodness:\n\n - JSF Configuration\n - libsass-filter for on-the-fly SASS to CSS compilation\n - Rewrite-servlet with pretty-faces for SEO urls\n - WildFly deployment configured, app mounts at /\n - Production and Development mode\n    \n### Create a new project\n\n    mvn archetype:generate \\\n    -DarchetypeGroupId=no.tornado \\\n    -DarchetypeArtifactId=jsf-quickstart-archetype \\\n    -DarchetypeVersion=0.9.1 \\\n    -DgroupId=com.example \\\n    -DartifactId=myapp \\\n    -Dpackage=myapp \\\n    -Dversion=1.0-SNAPSHOT\n\nThe generated folder structure will look like this:\n\n    myapp/pom.xml\n    myapp/src\n    myapp/src/main\n    myapp/src/main/java\n    myapp/src/main/java/myapp\n    myapp/src/main/resources\n    myapp/src/main/webapp\n    myapp/src/main/webapp/index.xhtml\n    myapp/src/main/webapp/resources\n    myapp/src/main/webapp/resources/script\n    myapp/src/main/webapp/resources/script/app.js\n    myapp/src/main/webapp/resources/style\n    myapp/src/main/webapp/resources/style/app.scss\n    myapp/src/main/webapp/template.xhtml\n    myapp/src/main/webapp/WEB-INF\n    myapp/src/main/webapp/WEB-INF/faces-config.xml\n    myapp/src/main/webapp/WEB-INF/jboss-web.xml\n    myapp/src/main/webapp/WEB-INF/pretty-config.xml\n    myapp/src/main/webapp/WEB-INF/web.xml\n    \nThe deployment descriptor `pom.xml` is preconfigured with two profiles:\n\n#### Profile 'development' (default)\n    \n- JSF project stage is set to `Development`\n- libsass-filter recompiles stylsheets on each request\n- Separate Wildfly deployment configuration\n     \n#### Profile 'production'\n    \n- JSF project stage is set to `Production`\n- libsass-filter caches stylsheets after initial request\n- Separate Wildfly deployment configuration\n\n### Going live\n\nActivate the production profile to push your project to production:\n\n    mvn clean wildfly:deploy\n\n### Wildfly configuration\n\nTo configure a new Wildfly installation you need to add an administration user.\n\nAdd administration user to Wildfly:\n\n    $WILDFLY_HOME/bin/add-user.sh admin secret\n\nThen configure your `pom.xml` to match:\n\n    \u003cprofile\u003e\n        \u003cid\u003eproduction\u003c/id\u003e\n        \u003cproperties\u003e\n            \u003cjsfProjectStage\u003eProduction\u003c/jsfProjectStage\u003e\n            \u003clibsassCache\u003etrue\u003c/libsassCache\u003e\n            \u003clibsassOutputStyle\u003ecompressed\u003c/libsassOutputStyle\u003e\n            \u003cwildflyHostname\u003emy-server-hostname\u003c/wildflyHostname\u003e\n            \u003cwildflyPort\u003e9990\u003c/wildflyPort\u003e\n            \u003cwildflyUsername\u003eadmin\u003c/wildflyUsername\u003e\n            \u003cwildflyPassword\u003esecret\u003c/wildflyPassword\u003e\n        \u003c/properties\u003e\n    \u003c/profile\u003e\n\n### Custom app mountpoint\n\nTo mount your url at something other than /, update the `context-root` parameter in\n`jboss-web.xml` or delete the file to deploy to the finalName Maven generates.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedvin%2Fjsf-quickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedvin%2Fjsf-quickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedvin%2Fjsf-quickstart/lists"}