How to run gatling test from VS Code

I am trying Gatling with VS Code for the first time. Can someone tell me how I can build and run my test from VS code. I am using Scala Build server.

I am, having the following error message
when I neter the following command : mvn clean gatling: execute

[INFO] Scanning for projects…
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.209 s
[INFO] Finished at: 2020-04-27T15:47:06+04:00
[INFO] ------------------------------------------------------------------------
[ERROR] Could not find goal ‘’ in plugin io.gatling:gatling-maven-plugin:3.0.5 among available goals help, recorder, test, verify → [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] MojoNotFoundException - Apache Maven - Apache Software Foundation

POM.xml

<?xml version="1.0" encoding="UTF-8"?>


4.0.0
APITest
ApiTest-gatling-maven
1.0-SNAPSHOT

1.8 1.8 UTF-8

<gatling.version>3.3.1</gatling.version>
<gatling-maven-plugin.version>3.0.5</gatling-maven-plugin.version>

io.gatling.highcharts gatling-charts-highcharts ${gatling.version} io.gatling gatling-app ${gatling.version} io.gatling gatling-recorder ${gatling.version} io.gatling gatling-maven-plugin ${gatling-maven-plugin.version}

Project structure is as follows:

The correct goal is test, not execute.

Is there a tutorial for this? I am still having error with test