This is a setup with SonarCloud and Gitlab
I think i have a problem with my pom file. The pom file is the only thing importing.
here is the pom, does anything look off?
<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">
<groupId>group id is here</groupId>
<modelVersion>4.0.0</modelVersion>
<artifactId>artifact name here</artifactId>
<version>1.0.0</version>
<build>
<plugins>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.3.0.603</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sonar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<sonar.projectKey>project key here</sonar.projectKey>
<sonar.organization>org here-1</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.login>login key here</sonar.login>
</properties>
</project>