removes maven-wrapper.jar from repository (#5366)

Signed-off-by: Paul S. Schweigert <paul@paulschweigert.com>

Signed-off-by: Paul S. Schweigert <paul@paulschweigert.com>
This commit is contained in:
Paul Schweigert 2022-12-19 03:00:54 -05:00 committed by GitHub
parent e5228c0733
commit c2368bbd8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 6 additions and 0 deletions

3
.gitignore vendored
View File

@ -21,5 +21,8 @@ blog/docs/images/case-studies/
.project
*.class
# Don't include maven wrapper jar
maven-wrapper.jar
# Ignore Python virtual environments
.venv

View File

@ -202,6 +202,7 @@ which you update and create the necessary build and configuration files:
1. Run the application locally:
```bash
mvn wrapper:wrapper
./mvnw compile quarkus:dev
```

View File

@ -29,6 +29,7 @@ cd knative-docs/code-samples/serving/hello-world/helloworld-java
1. Run the application locally:
```bash
mvn wrapper:wrapper
./mvnw package && java -jar target/helloworld-0.0.1-SNAPSHOT-jar-with-dependencies.jar
```

View File

@ -74,6 +74,7 @@ cd knative-docs/code-samples/serving/hello-world/helloworld-java-spring
1. Run the application locally:
```bash
mvn wrapper:wrapper
./mvnw package && java -jar target/helloworld-0.0.1-SNAPSHOT.jar
```