Skip to content

Commit

Permalink
docs: update the docs of the JavaProvider to include the changed st…
Browse files Browse the repository at this point in the history
…art cmd for gradle

Co-authored-by: Tibor Toth <toth.t11@gmail.com>
  • Loading branch information
fattila16 and tt0th committed Oct 18, 2023
1 parent c59594d commit de94abe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/pages/docs/providers/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ If Maven is found:
If Gradle is found:

```
./gradlew build
./gradlew clean build -x check -x test
```

## Start
Expand All @@ -68,11 +68,11 @@ java -Dserver.port=$PORT $JAVA_OPTS -jar target/*jar
If Gradle is found:

```
java $JAVA_OPTS -jar build/libs/*.jar
java $JAVA_OPTS -jar $(ls -1 build/libs/*jar | grep -v plain)
```

If Gradle and Spring Boot is found:

```
java $JAVA_OPTS -jar -Dserver.port=$PORT build/libs/*.jar
java $JAVA_OPTS -jar -Dserver.port=$PORT $(ls -1 build/libs/*jar | grep -v plain)
```

0 comments on commit de94abe

Please sign in to comment.