Skip to content

Commit 9ca36c6

Browse files
committed
updates
1 parent 4185904 commit 9ca36c6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/app-service/tutorial-webjobs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,13 @@ public class HelloWorld {
269269
270270
1. The `run.sh` script runs a jar with the name that set in the Maven configuration. This script will run when our WebJob is triggered.
271271
272-
```bash
273-
java -jar webjob-artifact-1.0.0.jar
272+
```bash
273+
java -jar webjob-artifact-1.0.0.jar
274274
```
275275
276276
1. Next, we compile the Java project to produce the executable `.jar`. There are multiple ways to do this, but for this example, we’ll use Maven. Run the following commands from the `project/` directory:
277277
278-
```bash
278+
```bash
279279
mvn install
280280
mvn package
281281
```
@@ -284,7 +284,7 @@ public class HelloWorld {
284284
285285
1. Move the jar file to the root of the git repo with `mv project/target/webjob-artifact-1.0.0.jar .` Next you package our application as a `.zip` file.
286286
287-
```bash
287+
```bash
288288
zip webjob.zip run.sh webjob-artifact-1.0.0.jar
289289
```
290290
@@ -402,4 +402,4 @@ To remove the WebJob, select the WebJob in the portal and select `Delete`.
402402
403403
## Next step
404404
405-
[Explore more advanced WebJob scenarios, including triggers and deployment options](https://learn.microsoft.com/en-us/azure/app-service/webjobs-create)
405+
[Explore more advanced WebJob scenarios, including triggers and deployment options](webjobs-create.md)

0 commit comments

Comments
 (0)