{"id":21948126,"url":"https://github.com/evolution-gaming/akka-test","last_synced_at":"2025-03-22T17:13:49.863Z","repository":{"id":74384277,"uuid":"227683653","full_name":"evolution-gaming/akka-test","owner":"evolution-gaming","description":"Set of useful tests for akka dependent porjects","archived":false,"fork":false,"pushed_at":"2024-07-18T16:28:25.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-01-27T19:54:09.062Z","etag":null,"topics":["akka","akka-actor","akka-http","scalatest","test"],"latest_commit_sha":null,"homepage":"","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/evolution-gaming.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-12T19:44:53.000Z","updated_at":"2024-07-18T16:28:28.000Z","dependencies_parsed_at":"2025-01-27T19:47:10.263Z","dependency_job_id":"b7f390ec-8f94-4cbe-a006-065e1e43cb51","html_url":"https://github.com/evolution-gaming/akka-test","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolution-gaming%2Fakka-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolution-gaming%2Fakka-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolution-gaming%2Fakka-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolution-gaming%2Fakka-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evolution-gaming","download_url":"https://codeload.github.com/evolution-gaming/akka-test/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244991177,"owners_count":20543627,"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":["akka","akka-actor","akka-http","scalatest","test"],"created_at":"2024-11-29T05:12:07.570Z","updated_at":"2025-03-22T17:13:49.833Z","avatar_url":"https://github.com/evolution-gaming.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# akka-test \n[![travis-ci](https://travis-ci.org/evolution-gaming/akka-test.svg)](https://travis-ci.org/evolution-gaming/akka-test)\n[![github-actions](https://github.com/evolution-gaming/akka-test/workflows/ci/badge.svg)](https://github.com/evolution-gaming/akka-test/actions?query=workflow%3Aci)\n[![scoverage](https://coveralls.io/repos/evolution-gaming/akka-test/badge.svg)](https://coveralls.io/r/evolution-gaming/akka-test)\n[![codacy](https://api.codacy.com/project/badge/Grade/799b059200e14801ac572ca5b86cc48e)](https://www.codacy.com/manual/evolution-gaming/akka-test?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=evolution-gaming/akka-test\u0026amp;utm_campaign=Badge_Grade)\n[![bintray](https://api.bintray.com/packages/evolutiongaming/maven/akka-test-actor/images/download.svg) ](https://bintray.com/evolutiongaming/maven/akka-test-actor/_latestVersion)\n[![license: MIT](https://img.shields.io/badge/License-MIT-yellowgreen.svg)](https://opensource.org/licenses/MIT)\n\nThis library is created in order to provide reusable set of tests to be used in projects dependent on [Akka](https://akka.io) libraries.\nFor instance to prevent following \"surprise\" at runtime:\n\n```\njava.lang.IllegalStateException: Detected possible incompatible versions on the classpath. Please note that a given Akka HTTP version MUST be the same across all modules of Akka HTTP that you are using, e.g. if you use [10.1.11] all other modules that are released together MUST be of the same version. Make sure you're using a compatible set of libraries. Possibly conflicting versions [10.1.9, 10.1.11] in libraries [akka-http-spray-json:10.1.9, akka-parsing:10.1.11, akka-http-xml:10.1.11, akka-http:10.1.11, akka-http-core:10.1.11]\n\tat akka.util.ManifestInfo.checkSameVersion(ManifestInfo.scala:206)\n\tat akka.util.ManifestInfo.checkSameVersion(ManifestInfo.scala:173)\n\tat akka.http.scaladsl.HttpExt.\u003cinit\u003e(Http.scala:75)\n\tat akka.http.scaladsl.Http$.createExtension(Http.scala:1123)\n\tat akka.http.scaladsl.Http$.createExtension(Http.scala:892)\n\tat akka.actor.ActorSystemImpl.registerExtension(ActorSystem.scala:1151)\n\tat akka.actor.ExtensionId.apply(Extension.scala:78)\n\tat akka.actor.ExtensionId.apply$(Extension.scala:77)\n\tat akka.http.scaladsl.Http$.apply(Http.scala:1118)\n```\n\n## For [akka-actor](https://doc.akka.io/docs/akka/current/)\n\nTests:\n* akka modules are of same version\n\n### Usage\n\n```scala\nresolvers += Resolver.bintrayRepo(\"evolutiongaming\", \"maven\")\n\nlibraryDependencies += \"com.evolutiongaming\" %% \"akka-test-actor\" % \"0.0.2\" % Test\n```\n\nAnd just drop this test into your project \n\n```scala\nimport com.evolutiongaming.akkatest.AkkaActorSuite\n\nclass AkkaActorTest extends AkkaActorSuite\n```\n\n\n## For [akka-http](https://doc.akka.io/docs/akka-http/current)\n\nTests:\n* akka-http modules are of same version\n\n### Usage\n\nAdd dependency\n\n```scala\nresolvers += Resolver.bintrayRepo(\"evolutiongaming\", \"maven\")\n\nlibraryDependencies += \"com.evolutiongaming\" %% \"akka-test-http\" % \"0.0.2\" % Test\n```\n\nAnd just drop this test into your project\n\n```scala\nimport com.evolutiongaming.akkatest.AkkaHttpSuite\n\nclass AkkaHttpTest extends AkkaHttpSuite\n```\n\n## Setup\n\n```scala\nresolvers += Resolver.bintrayRepo(\"evolutiongaming\", \"maven\")\n\nlibraryDependencies += \"com.evolutiongaming\" %% \"akka-test-actor\" % \"0.0.2\"\n\nlibraryDependencies += \"com.evolutiongaming\" %% \"akka-test-http\" % \"0.0.2\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolution-gaming%2Fakka-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevolution-gaming%2Fakka-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolution-gaming%2Fakka-test/lists"}