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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-graph</artifactId>
  11. <packaging>jar</packaging>
  12. <name>SonarQube :: Graph</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>commons-lang</groupId>
  16. <artifactId>commons-lang</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.google.guava</groupId>
  20. <artifactId>guava</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.code.findbugs</groupId>
  24. <artifactId>jsr305</artifactId>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.hamcrest</groupId>
  34. <artifactId>hamcrest-all</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.easytesting</groupId>
  39. <artifactId>fest-assert</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-surefire-plugin</artifactId>
  48. <configuration>
  49. <skipTests>${skipBatchTests}</skipTests>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>