gpt4 book ai didi

java - SonarQube - mvn Sonar : sonar - NoSuchElementException

转载 作者:行者123 更新时间:2023-12-01 18:44:38 25 4
gpt4 key购买 nike

我在 SonarQube 上有一个项目,但是当我尝试在终端中使用以下命令更新它时,出现此错误:

[ERROR] NoSuchElementException [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.

我在网上搜索过,但显然没有人知道答案,所以我想我应该尝试一下。

我有以下项目结构:

  • 项目名称
    • 达尔
    • 共享模型
    • WebsocketClient
    • Websocket服务器

所以我总共有 4 个模块。我的主要 pom.xml 如下所示:

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

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
</parent>
<groupId>myproject.nl</groupId>
<artifactId>myproject</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>websocketserver</module>
<module>websocketsclient</module>
<module>sharedmodel</module>
<module>Dal</module>
</modules>
<name>PartieKo</name>


<dependencies>
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>

</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

最佳答案

您的命令错误:

mvn sonar : sonar   // WRONG

去掉 Sonar 与 Sonar 之间的间隔并添加 Sonar 服务器地址:

mvn sonar:sonar -Dsonar.host.url=https://mysonarserver:9000

Sonar 服务器配置也可以在pom.xml文件中配置(在属性部分添加)

<properties>
...
<sonar.host.url>https://mysonarserver:9000</sonar.host.url>
</properties>

关于java - SonarQube - mvn Sonar : sonar - NoSuchElementException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59863814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com