{"id":18589385,"url":"https://github.com/pmorie/simple-jbosseap","last_synced_at":"2025-06-16T14:03:53.332Z","repository":{"id":14994784,"uuid":"17720111","full_name":"pmorie/simple-jbosseap","owner":"pmorie","description":null,"archived":false,"fork":false,"pushed_at":"2014-03-13T17:55:18.000Z","size":224,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-17T19:16:25.859Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/pmorie.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":"2014-03-13T17:42:46.000Z","updated_at":"2014-04-28T23:45:06.000Z","dependencies_parsed_at":"2022-09-11T00:51:13.168Z","dependency_job_id":null,"html_url":"https://github.com/pmorie/simple-jbosseap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmorie%2Fsimple-jbosseap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmorie%2Fsimple-jbosseap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmorie%2Fsimple-jbosseap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmorie%2Fsimple-jbosseap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pmorie","download_url":"https://codeload.github.com/pmorie/simple-jbosseap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254493385,"owners_count":22080127,"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-07T00:51:54.938Z","updated_at":"2025-05-16T08:07:47.691Z","avatar_url":"https://github.com/pmorie.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"kitchensink: Assortment of technologies including Arquillian\n========================\nAuthor: Pete Muir\nLevel: Intermediate\nTechnologies: CDI, JSF, JPA, EJB, JPA, JAX-RS, BV\nSummary: An example that incorporates multiple technologies\nTarget Product: EAP\nSource: \u003chttps://github.com/jboss-jdf/jboss-as-quickstart/\u003e\n\nWhat is it?\n-----------\n\nThis is your project! It is a sample, deployable Maven 3 project to help you get your foot in the door developing with Java EE 6 on JBoss Enterprise Application Platform 6 or JBoss AS 7. \n\nThis project is setup to allow you to create a compliant Java EE 6 application using JSF 2.0, CDI 1.0, EJB 3.1, JPA 2.0 and Bean Validation 1.0. It includes a persistence unit and some sample persistence and transaction code to introduce you to database access in enterprise Java. \n\nThere is a tutorial for this quickstart in the [Getting Started Developing Applications Guide](http://www.jboss.org/jdf/quickstarts/jboss-as-quickstart/guide/KitchensinkQuickstart/).\n\nSystem requirements\n-------------------\n\nAll you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.\n\nThe application this project produces is designed to be run on JBoss Enterprise Application Platform 6 or JBoss AS 7. \n\n \nConfigure Maven\n---------------\n\nIf you have not yet done so, you must [Configure Maven](../README.md#mavenconfiguration) before testing the quickstarts.\n\n\nStart JBoss Enterprise Application Platform 6 or JBoss AS 7 with the Web Profile\n-------------------------\n\n1. Open a command line and navigate to the root of the JBoss server directory.\n2. The following shows the command line to start the server with the web profile:\n\n        For Linux:   JBOSS_HOME/bin/standalone.sh\n        For Windows: JBOSS_HOME\\bin\\standalone.bat\n\n \nBuild and Deploy the Quickstart\n-------------------------\n\n_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#buildanddeploy) for complete instructions and additional options._\n\n1. Make sure you have started the JBoss Server as described above.\n2. Open a command line and navigate to the root directory of this quickstart.\n3. Type this command to build and deploy the archive:\n\n        mvn clean package jboss-as:deploy\n\n4. This will deploy `target/jboss-as-kitchensink.war` to the running instance of the server.\n \n\nAccess the application \n---------------------\n\nThe application will be running at the following URL: \u003chttp://localhost:8080/jboss-as-kitchensink/\u003e.\n\n\nUndeploy the Archive\n--------------------\n\n1. Make sure you have started the JBoss Server as described above.\n2. Open a command line and navigate to the root directory of this quickstart.\n3. When you are finished testing, type this command to undeploy the archive:\n\n        mvn jboss-as:undeploy\n\n\nRun the Arquillian Tests \n-------------------------\n\nThis quickstart provides Arquillian tests. By default, these tests are configured to be skipped as Arquillian tests require the use of a container. \n\n_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#arquilliantests) for complete instructions and additional options._\n\n1. Make sure you have started the JBoss Server as described above.\n2. Open a command line and navigate to the root directory of this quickstart.\n3. Type the following command to run the test goal with the following profile activated:\n\n        mvn clean test -Parq-jbossas-remote \n\n\nRun the Quickstart in JBoss Developer Studio or Eclipse\n-------------------------------------\nYou can also start the server and deploy the quickstarts from Eclipse using JBoss tools. For more information, see [Use JBoss Developer Studio or Eclipse to Run the Quickstarts](../README.md#useeclipse) \n\n\nDebug the Application\n------------------------------------\n\nIf you want to debug the source code or look at the Javadocs of any library in the project, run either of the following commands to pull them into your local repository. The IDE should then detect them.\n\n    mvn dependency:sources\n    mvn dependency:resolve -Dclassifier=javadoc\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpmorie%2Fsimple-jbosseap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpmorie%2Fsimple-jbosseap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpmorie%2Fsimple-jbosseap/lists"}