We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running the template you are asked for an organisational name / package path. E.g. com.example.
if you change this to something else, the "package" declarations are updated as expected. However the imports in the test are not;
I,.e. if change the package to "com.bob"
The test looks like this;
package com.bob import akka.actor.testkit.typed.scaladsl.ScalaTestWithActorTestKit import com.example.Greeter.Greet import com.example.Greeter.Greeted import org.scalatest.WordSpecLike
import com.example.Greeter.Greet import com.example.Greeter.Greeted
have both NOT been updated to reflect the changed package.
The text was updated successfully, but these errors were encountered:
This issue belongs in akka-quickstart
Sorry, something went wrong.
I have created a PR to correct this.
No branches or pull requests
When running the template you are asked for an organisational name / package path.
E.g. com.example.
if you change this to something else, the "package" declarations are updated as expected.
However the imports in the test are not;
I,.e. if change the package to "com.bob"
The test looks like this;
import com.example.Greeter.Greet
import com.example.Greeter.Greeted
have both NOT been updated to reflect the changed package.
The text was updated successfully, but these errors were encountered: