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

Update code-change-guide.md #33008

Merged
merged 2 commits into from
Nov 4, 2024
Merged
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
7 changes: 6 additions & 1 deletion contributor-docs/code-change-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ in the Google Cloud documentation.

Depending on the languages involved, your `PATH` file needs to have the following elements configured.

* A Java environment that uses a supported Java version, preferably Java 8.
* A Java environment that uses a supported Java version, preferably Java 11.
* This environment is needed for all development, because Beam is a Gradle project that uses JVM.
* Recommended: To manage Java versions, use [sdkman](https://sdkman.io/install).

Expand Down Expand Up @@ -624,6 +624,11 @@ Tips for using the Dataflow runner:

## Appendix

### Common Issues

* If you run into some strange errors such as `java.lang.NoClassDefFoundError`, run `./gradlew clean` first
* To run one single Java test with gradle, use `--tests` to filter, for example, `./gradlew :it:google-cloud-platform:WordCountIntegrationTest --tests "org.apache.beam.it.gcp.WordCountIT.testWordCountDataflow"`

### Directories of snapshot builds

* https://repository.apache.org/content/groups/snapshots/org/apache/beam/ Java SDK build (nightly)
Expand Down
Loading