Skip to content
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
8 changes: 8 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ Gradle itself is included via the wrapper — no separate installation needed.

Formatting is enforced in CI. Always run `spotlessApply` before pushing.

When working on Java-only changes in the dashboard module, pass `-PskipFrontend` to skip the
Node/npm frontend build steps (requires Node to be available otherwise):

```shell
./gradlew :git-proxy-java-dashboard:compileJava -PskipFrontend
./gradlew :git-proxy-java-dashboard:build -PskipFrontend
```

## Running the server locally

### Proxy only (no dashboard)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ext {

allprojects {
group = 'org.finos.gitproxy'
version = '1.0.0-beta.4'
version = '1.0.0-rc.1'

repositories {
mavenCentral()
Expand Down
Loading