Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 32bcb94

Browse files
committed
Fix ClassNotFoundException
- Set AppEngine SDK jar as a compile scope dependency - Latest AppEngine SDK
1 parent 4036f55 commit 32bcb94

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,15 @@ It is assumes that you have some experience with developing on Windows, or can t
4949
* Make sure your App Engine project is alive and well in Google Cloud Console (https://console.cloud.google.com).
5050
5. Install the **Google Cloud Java Components** (https://cloud.google.com/sdk/docs/managing-components).
5151
* From the Google Cloud Shell, run `gcloud components install app-engine-java`
52+
* To update the Google Cloud SDK to the latest version, run `gcloud components update`
5253
6. Download and install **Netbeans Java EE** bundle (https://netbeans.org/downloads/).
5354
* The current version of Netbeans is 8.2, and by default it does not include Maven 3.5. Future versions of Netbeans may change this.
5455
7. Download and unzip **Maven 3.5** (https://maven.apache.org/download.cgi).
5556
* On Windows, you can extract it to a folder in Program Files.
56-
* Make sure you end up with a Maven folder that contains `bin` and `boot`folders.
57+
* Make sure you end up with a Maven folder that contains `bin` and `boot` folders.
5758
* Your `.../Maven/bin` folder needs to be on your PATH environment variable (https://superuser.com/questions/949560/how-do-i-set-system-environment-variables-in-windows-10).
5859

60+
5961
### Set up the Project in Netbeans ###
6062

6163
1. Launch Netbeans

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@
124124
<!-- https://mvnrepository.com/artifact/com.google.appengine/appengine-api-1.0-sdk -->
125125
<groupId>com.google.appengine</groupId>
126126
<artifactId>appengine-api-1.0-sdk</artifactId>
127-
<version>1.9.59</version>
128-
<scope>provided</scope>
127+
<version>1.9.63</version>
128+
<scope>compile</scope>
129129
</dependency>
130130

131131
<dependency>

0 commit comments

Comments
 (0)