Skip to content

Commit

Permalink
docs: fix the issue 133 for GitHub Copilot Java: Spring Boot Applicat…
Browse files Browse the repository at this point in the history
…ion failed unzip (fixes #133)

This is the fix for the #133

In the fix,
I updated the Spring Boot Version to 3.3.0 and also specified Java Version.

#133
  • Loading branch information
yoshioterada committed Jun 4, 2024
1 parent 11ac180 commit 9541d62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions workshops/github-copilot-java/workshop.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,13 @@ In this section, we will create a sample Java project for testing GitHub Copilot
> mkdir sample; cd sample
> curl https://start.spring.io/starter.zip \
-d dependencies=web,devtools \
-d bootVersion=3.1.5 \
-d bootVersion=3.3.0 \
-d type=maven-project \
-d applicationName=CopilotSample \
-d packageName=com.microsoft.sample \
-d groupId=com.microsoft.sample \
-d artifactId=CopilotSample \
-d javaVersion=21 (or 17) \
-o my-project.zip
> unzip my-project.zip
```
Expand Down Expand Up @@ -201,7 +202,7 @@ After unzipping the file, you will see the following directory structure:
## Opening the Project in VS Code

Now that the project has been created, it's time to open it in VS Code.
Enter the command 'code .'
Enter the command 'code .'

```bash
code .
Expand Down

0 comments on commit 9541d62

Please sign in to comment.