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 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>5.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-java-api</artifactId>
  10. <name>SonarQube :: Java API</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.codehaus.sonar</groupId>
  14. <artifactId>sonar-plugin-api</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.codehaus.sonar</groupId>
  18. <artifactId>sonar-deprecated</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-lang</groupId>
  22. <artifactId>commons-lang</artifactId>
  23. </dependency>
  24. <!-- unit tests -->
  25. <dependency>
  26. <groupId>org.codehaus.sonar</groupId>
  27. <artifactId>sonar-testing-harness</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-surefire-plugin</artifactId>
  36. <configuration>
  37. <skipTests>${skipBatchTests}</skipTests>
  38. </configuration>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>