Skip to content

Commit 6d5b934

Browse files
DSouzaMdnestoro
authored andcommitted
Better command examples; fix version string location
1 parent 62eb125 commit 6d5b934

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

DEVELOPING.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,19 @@ You can use the various commands in the [Gradle build lifecycle](https://docs.gr
1919
Some examples (all executed from the root of the repository):
2020

2121
```bash
22-
# Build all projects
22+
# Compile all projects
2323
./gradlew assemble
2424

25-
# Build only the native-gradle-plugin (for example)
25+
# Run unit tests in all projects
26+
./gradlew test
27+
28+
# Run functional tests in all projects
29+
./gradlew funTest
30+
31+
# Compile only the native-gradle-plugin (for example)
2632
./gradlew :native-gradle-plugin:assemble
2733

28-
# Build and run all tests
34+
# Build and run all tests, complete (and very long) build
2935
./gradlew build
3036
```
3137

@@ -53,7 +59,7 @@ To do this, first modify the project as necessary, and then build and publish th
5359
The above command publishes to a "common" repository located at `build/common-repo`.
5460

5561
Next, update the project build files:
56-
1. Update the version string. The version can be found manually by searching for the published artifacts in `~/.m2/repository/org/graalvm/buildtools/native/`, or alternatively by checking the `nativeBuildTools` property [here](gradle/libs.versions.toml).
62+
1. Update the version string. The version can be found manually by searching for the published artifacts in `build/common-repo`, or alternatively by checking the `nativeBuildTools` property [here](gradle/libs.versions.toml).
5763
2. Update the list of repositories to include and prioritize the common repo.
5864

5965
### Gradle

0 commit comments

Comments
 (0)