{"id":30886702,"url":"https://github.com/travisthetechie/beanstalk-play","last_synced_at":"2025-09-08T13:09:44.359Z","repository":{"id":3861890,"uuid":"4947107","full_name":"TravisTheTechie/beanstalk-play","owner":"TravisTheTechie","description":null,"archived":false,"fork":false,"pushed_at":"2012-08-02T15:52:42.000Z","size":144,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-14T14:13:34.758Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"spesmilo/electrum-server","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TravisTheTechie.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-07-08T15:09:18.000Z","updated_at":"2016-02-05T17:56:00.000Z","dependencies_parsed_at":"2022-07-07T16:52:54.381Z","dependency_job_id":null,"html_url":"https://github.com/TravisTheTechie/beanstalk-play","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TravisTheTechie/beanstalk-play","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravisTheTechie%2Fbeanstalk-play","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravisTheTechie%2Fbeanstalk-play/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravisTheTechie%2Fbeanstalk-play/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravisTheTechie%2Fbeanstalk-play/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TravisTheTechie","download_url":"https://codeload.github.com/TravisTheTechie/beanstalk-play/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravisTheTechie%2Fbeanstalk-play/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274189348,"owners_count":25237940,"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","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-09-08T13:09:34.279Z","updated_at":"2025-09-08T13:09:44.342Z","avatar_url":"https://github.com/TravisTheTechie.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"beanstalk-play\n==============\n\nInstall [Play! Framework](http://www.playframework.org/)\nvia homebrew or other means, per your platform.\n\n    $ brew install play\n\nCheck your play version..., we're looking for something \u0026lt;= 2\n\n    $ play\n           _            _ \n     _ __ | | __ _ _  _| |\n    | '_ \\| |/ _' | || |_|\n    |  __/|_|\\____|\\__ (_)\n    |_|            |__/ \n             \n    play! 2.0.2, http://www.playframework.org\n    \n    This is not a play application!\n    \n    Use `play new` to create a new Play application in the current directory, \n    or go to an existing application and launch the development console using `play`.\n    \n    You can also browse the complete documentation at http://www.playframework.org.\n\nCreate a new Play! app...\n\n\nThen make a new directory for a new app, then initialize a new play app\n\n    $ play new new-play\n           _            _ \n     _ __ | | __ _ _  _| |\n    | '_ \\| |/ _' | || |_|\n    |  __/|_|\\____|\\__ (_)\n    |_|            |__/ \n             \n    play! 2.0.2, http://www.playframework.org\n    \n    The new application will be created in /Users/travis/src/new-play\n    \n    What is the application name? \n    \u003e new-play\n    \n    Which template do you want to use for this new application? \n    \n      1 - Create a simple Scala application\n      2 - Create a simple Java application\n      3 - Create an empty project\n    \n    \u003e 2\n    \n    OK, application new-play is created.\n\n    Have fun!\n\n    $ \n\nModify `project/plugins.sbt` to include the `war` generating plugin...\n\n    // Comment to get more information during initialization\n    logLevel := Level.Warn\n\n    // The Typesafe repository\n    resolvers ++= Seq(\n      \"Typesafe repository\" at \"http://repo.typesafe.com/typesafe/releases/\",\n      \"Play2war plugins release\" at \"http://repository-play-war.forge.cloudbees.com/release/\"\n    )\n\n    // Use the Play sbt plugin for Play projects\n    addSbtPlugin(\"play\" % \"sbt-plugin\" % \"2.0.2\")\n\n    addSbtPlugin(\"com.github.play2war\" % \"play2-war-plugin\" % \"0.6\")\n\nAnd the `project/Build.scala` file as well...\n\n    import sbt._\n    import Keys._\n    import PlayProject._\n\n    object ApplicationBuild extends Build {\n    \n        val appName         = \"new-play\"\n        val appVersion      = \"1.0-SNAPSHOT\"\n\n        val appDependencies = Seq(\n          // Add your project dependencies here,\n          \"com.github.play2war\" %% \"play2-war-core\" % \"0.6\"\n        )\n\n        val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(\n          // Add your own project settings here\n          resolvers += \"Play2war plugins release\" at \"http://repository-play-war.forge.cloudbees.com/release/\"\n        )\n\n    }\n\nThen executing `play war` will create a new war file in `target/`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftravisthetechie%2Fbeanstalk-play","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftravisthetechie%2Fbeanstalk-play","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftravisthetechie%2Fbeanstalk-play/lists"}