You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When updating dependencies in the project, you need to regenerate the dependency lock files
32
+
and license reports.
33
+
34
+
### Regenerate lock files
35
+
36
+
After updating dependencies in any `build.gradle.kts` file, regenerate the lock files:
37
+
38
+
```bash
39
+
./gradlew resolveAndLockAll --write-locks
40
+
```
41
+
42
+
This will update all `gradle.lockfile` files throughout the project to reflect the new dependency versions.
43
+
44
+
### Regenerate license files
45
+
46
+
After updating dependencies, regenerate the license report to include licenses for new dependencies:
47
+
48
+
```bash
49
+
./gradlew generateLicenseReport --no-build-cache
50
+
```
51
+
52
+
This ensures all third-party licenses are properly documented.
53
+
29
54
## IntelliJ setup and troubleshooting
30
55
31
56
See [IntelliJ setup and troubleshooting](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/contributing/intellij-setup-and-troubleshooting.md)
0 commit comments