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
@@ -266,14 +266,14 @@ If you are using the Gradle build system, you can apply the following changes to
266
266
267
267
These instructions configure the `war` task to do two important things:
268
268
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.
269
-
2.**Rename the jars:** The `rename` block strips the version string (e.g., `-5.0.3-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.
269
+
2.**Rename the jars:** The `rename` block strips the version string (e.g., `-5.0.3-beta-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.
270
270
271
271
### Kotlin
272
272
```
273
273
import org.gradle.api.tasks.bundling.War
274
274
275
275
// 1. Define the target runtime version
276
-
val gaeRuntimeVersion = "5.0.3-SNAPSHOT" // Change this to your desired version
276
+
val gaeRuntimeVersion = "5.0.3-beta-SNAPSHOT" // Change this to your desired version
277
277
278
278
// 2. Create a custom configuration for the runtime zip
279
279
val gaeRuntimeZip by configurations.creating
@@ -309,7 +309,7 @@ tasks.named<War>("war") {
309
309
310
310
```
311
311
// 1. Define the target runtime version
312
-
def gaeRuntimeVersion = "5.0.3-SNAPSHOT" // Change this to your desired version
312
+
def gaeRuntimeVersion = "5.0.3-beta-SNAPSHOT" // Change this to your desired version
313
313
314
314
// 2. Create a custom configuration for the runtime zip
0 commit comments