diff options
author | David Rautureau <david.rautureau@sonarsource.com> | 2018-02-08 15:01:19 +0100 |
---|---|---|
committer | David Rautureau <david.rautureau@sonarsource.com> | 2018-03-09 11:33:38 +0100 |
commit | 1a17e4302e4b63de6b4ce7c049441803b9471524 (patch) | |
tree | 031bcfbf302c7909c5b45a7c31f1bbc00a2fce34 /sonar-check-api | |
parent | 21fbe3697bdb6e66016ef8d0bea49da574e02e7d (diff) | |
download | sonarqube-1a17e4302e4b63de6b4ce7c049441803b9471524.tar.gz sonarqube-1a17e4302e4b63de6b4ce7c049441803b9471524.zip |
Move To Gradle
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> |