diff options
Diffstat (limited to 'sonar-check-api')
-rw-r--r-- | sonar-check-api/build.gradle | 11 | ||||
-rw-r--r-- | sonar-check-api/pom.xml | 26 |
2 files changed, 11 insertions, 26 deletions
diff --git a/sonar-check-api/build.gradle b/sonar-check-api/build.gradle new file mode 100644 index 00000000000..c7749e3dd38 --- /dev/null +++ b/sonar-check-api/build.gradle @@ -0,0 +1,11 @@ +sonarqube { + properties { + property 'sonar.projectName', "${projectTitle} :: Check API" + } +} + +dependencies { + compileOnly 'com.google.code.findbugs:jsr305' + + testCompile 'junit:junit' +} diff --git a/sonar-check-api/pom.xml b/sonar-check-api/pom.xml deleted file mode 100644 index 76cc534f50f..00000000000 --- a/sonar-check-api/pom.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?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.sonarsource.sonarqube</groupId> - <artifactId>sonarqube</artifactId> - <version>7.1-SNAPSHOT</version> - <relativePath>..</relativePath> - </parent> - <artifactId>sonar-check-api</artifactId> - <name>SonarQube :: Check API</name> - <description>Check API</description> - - <dependencies> - <dependency> - <groupId>com.google.code.findbugs</groupId> - <artifactId>jsr305</artifactId> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - </dependencies> -</project> |