I am having a hard time understanding how to integrate Maven and Gatling into a project on windows 7
- I installed Maven
- installed Gatling
- trying to create a Maven archetypefor Gatling but I have no idea how or if I need to
I am having a hard time understanding how to integrate Maven and Gatling into a project on windows 7
Here’s the full procedure: https://github.com/excilys/gatling/wiki/Development-environment
this is the command I am using to create the maven project
mvn archetype:create -DarchetypeGroupId=com.excilys.ebi.gatling.highcharts -DarchetypeArtifactId=gatling-charts-highcharts -DarchetypeVersion=1.1.0 -DgroupId=com.excilys.ebi.gatling.highcharts -DartifactId=gatling-maven-plugin
this is what I am using to create the project in maven
mvn archetype:create -DarchetypeGroupId=com.excilys.ebi.gatling.highcharts -DarchetypeArtifactId=gatling-charts-highcharts -DarchetypeVersion=1.1.0 -DgroupId=com.excilys.ebi.gatling.highcharts -DartifactId=gatling-maven-plugin
Sorry, wrong link: https://github.com/excilys/gatling/wiki/Ide-integration
First, don’t use 1.1.0, please!!! Use at least 1.5.
Then, Gatling archetype is not hosted on maven central. If you want to generate the project from the command line instead of m2e as described in our documentation, you still have to declare the remote archetype catalog:
So, you have to add -DarchetypeCatalog=http://repository.excilys.com/content/groups/public
yep this worked, thanks…