You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -285,14 +285,14 @@ If you are using the Gradle build system, you can apply the following changes to
285
285
286
286
These instructions configure the `war` task to do two important things:
287
287
1.**Move the jars to the top of the WAR directory:** The `into("")` (or `into('.')`) block combined with `eachFile { path = name }` extracts the jars and flattens the directory structure, placing them directly in the root of the generated WAR.
288
-
2.**Rename the jars:** The `rename` block strips the version string (e.g., `-5.0.1-SNAPSHOT`) from the extracted jars so their names exactly match the `-Djava.class.path=runtime-main.jar` argument specified in the `appengine-web.xml` entrypoint.
288
+
2.**Rename the jars:** The `rename` block strips the version string (e.g., `-5.0.2-SNAPSHOT`) from the extracted jars so their names exactly match the `-Djava.class.path=runtime-main.jar` argument specified in the `appengine-web.xml` entrypoint.
289
289
290
290
### Kotlin
291
291
```
292
292
import org.gradle.api.tasks.bundling.War
293
293
294
294
// 1. Define the target runtime version
295
-
val gaeRuntimeVersion = "5.0.1-SNAPSHOT" // Change this to your desired version
295
+
val gaeRuntimeVersion = "5.0.2-SNAPSHOT" // Change this to your desired version
296
296
297
297
// 2. Create a custom configuration for the runtime zip
298
298
val gaeRuntimeZip by configurations.creating
@@ -328,7 +328,7 @@ tasks.named<War>("war") {
328
328
329
329
```
330
330
// 1. Define the target runtime version
331
-
def gaeRuntimeVersion = "5.0.1-SNAPSHOT" // Change this to your desired version
331
+
def gaeRuntimeVersion = "5.0.2-SNAPSHOT" // Change this to your desired version
332
332
333
333
// 2. Create a custom configuration for the runtime zip
0 commit comments