You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 913B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.sonarsource.sonarqube</groupId>
  6. <artifactId>sonarqube</artifactId>
  7. <version>7.1-SNAPSHOT</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-check-api</artifactId>
  11. <name>SonarQube :: Check API</name>
  12. <description>Check API</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.google.code.findbugs</groupId>
  16. <artifactId>jsr305</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. </dependencies>
  25. </project>