1

我正在尝试将 maven 与 Gatling 集成,但出现以下错误消息。这是我第一次这样做,我真的需要帮助。

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] >>> maven-archetype-plugin:3.0.1:generate (default-cli) > generate-sources @ standalone-pom >>>
[INFO] 
[INFO] <<< maven-archetype-plugin:3.0.1:generate (default-cli) < generate-sources @ standalone-pom <<<
[INFO] 
[INFO] --- maven-archetype-plugin:3.0.1:generate (default-cli) @ standalone-pom ---
[INFO] Generating project in Batch mode
[WARNING] No archetype found in remote catalog. Defaulting to internal catalog
[WARNING] Archetype not found in any catalog. Falling back to central repository.
[WARNING] Add a repsoitory with id 'archetype' in your settings.xml if archetype's repository is elsewhere.
Downloading: https://repo.maven.apache.org/maven2/io/gatling/highcharts/gatling-highcharts-maven-archetype/2.2.1/gatling-highcharts-maven-archetype-2.2.1.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 23.203 s
[INFO] Finished at: 2017-08-04T11:18:56-04:00
[INFO] Final Memory: 14M/309M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate (default-cli) on project standalone-pom: The desired archetype does not exist (io.gatling.highcharts:gatling-highcharts-maven-archetype:2.2.1) -> [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] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] Maven execution terminated abnormally (exit code 1)
4

3 回答 3

4

我面临着同样的问题。当我替换为罗伯特在此 github 问题评论中所述时,它mvn archetype:generate得到mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate解决

于 2018-05-24T19:26:16.357 回答
2

我刚刚在 Maven 自己的网站上找到了它。他们给出了如下:

mvn archetype:generate -B 
        -DarchetypeGroupId=org.apache.maven.archetypes 
        -DarchetypeArtifactId=maven-archetype-quickstart 
        -DarchetypeVersion=1.1 
        -DgroupId=com.company 
        -DartifactId=project 
        -Dversion=1.0-SNAPSHOT 
        -Dpackage=com.company.project

正如我们所看到的archeTypeVersion,也提到了。它对我有用。所以会为你们工作。

于 2020-12-19T06:50:57.047 回答
0

您需要将插件添加到您的pom.xml中,您可以在下面找到插件:

<!-- To define the plugin version in your parent POM -->
<pluginManagement>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-archetype-plugin</artifactId>
      <version>3.0.1</version>
    </plugin>
    ...
  </plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-archetype-plugin</artifactId>
    <version>3.0.1</version>
  </plugin>
  ...
</plugins>

有关更多信息,您可以参考https://maven.apache.org/archetype/maven-archetype-plugin/plugin-info.html

如果您已经将此插件添加到您的pom.xml然后您可以尝试删除.m2存储库文件夹并更新您的 Maven 项目并重建项目并运行它。

于 2017-08-05T06:48:22.823 回答