Skip to content
New issue

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

docs: Use mvn verify instead of mvn integration-test #177

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ jobs:
fi
if [ true == '${{matrix.it}}' ]; then
${PRE_CMD}
KALIX_TESTKIT_DEBUG=true mvn integration-test --no-transfer-progress
KALIX_TESTKIT_DEBUG=true mvn verify --no-transfer-progress
fi

- name: ${{ matrix.sample }} rm & test-compile
Expand Down
2 changes: 1 addition & 1 deletion akka-javasdk-maven/akka-javasdk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
</goals>
<configuration>
<source>
log.warn('The 'it' profile is deprecated. It will be removed in future versions. Integration tests only need `mvn integration-test` to run.')
log.warn('The 'it' profile is deprecated. It will be removed in future versions. Integration tests only need `mvn verify` to run.')
</source>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/modules/java/pages/event-sourced-entities.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,4 @@ include::example$shopping-cart-quickstart/src/test/java/shoppingcart/ShoppingCar
<5> Request to retrieve current status of the shopping cart.
<6> Assert there should only be one item.

NOTE: The integration tests in samples can be run using `mvn integration-test`.
NOTE: The integration tests in samples can be run using `mvn verify`.
2 changes: 1 addition & 1 deletion docs/src/modules/java/pages/key-value-entities.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ include::example$key-value-counter/src/test/java/com/example/CounterIntegrationT
<4> Request to increase the value of counter `bar`. Response should have value `1`.
<5> Explicitly request current value of `bar`. It should be `1`.

NOTE: The integration tests in samples can be run using `mvn integration-test`.
NOTE: The integration tests in samples can be run using `mvn verify`.
2 changes: 1 addition & 1 deletion docs/src/modules/reference/pages/release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Current versions
- Updates to configure SSO integrations

* https://github.com/akka/akka-sdk/releases/tag/v3.0.2[Akka SDK 3.0.2]
- Integration Tests are now bound to `mvn integration-test` and not a specific profile
- Integration Tests are now bound to `mvn verify` and not a specific profile

* Platform update 2024-12-10
- New internal structure to capture usage data
Expand Down
2 changes: 1 addition & 1 deletion samples/event-sourced-counter-brokers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,5 @@ docker compose up

Then run:
```shell
mvn integration-test
mvn verify
```
2 changes: 1 addition & 1 deletion samples/transfer-workflow-compensation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ curl http://localhost:9000/transfer/1
To run the integration tests located in `src/test/java`:

```shell
mvn integration-test
mvn verify
```

## Troubleshooting
Expand Down
2 changes: 1 addition & 1 deletion samples/transfer-workflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ curl http://localhost:9000/transfer/1
To run the integration tests located in `src/test/java`:

```shell
mvn integration-test
mvn verify
```

## Troubleshooting
Expand Down
Loading