uk.co.codera.ci.tooling.sonar.dto.SystemConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codera-ci-tooling-service-sonar Show documentation
Show all versions of codera-ci-tooling-service-sonar Show documentation
Provides integration with sonar such as deleting projects automatically.
package uk.co.codera.ci.tooling.sonar.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class SystemConfiguration {
@JsonProperty("SonarQube")
private SonarQube sonarQube;
public void setSonarQube(SonarQube sonarQube) {
this.sonarQube = sonarQube;
}
public SonarQube getSonarQube() {
return this.sonarQube;
}
}