Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.codehaus.sonar.runner</groupId>
  5. <artifactId>sonar-runner</artifactId>
  6. <version>2.3-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>sonar-runner-batch</artifactId>
  9. <name>Sonar Runner - Batch</name>
  10. <properties>
  11. <sonarBatchVersion>3.5</sonarBatchVersion>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>ch.qos.logback</groupId>
  16. <artifactId>logback-classic</artifactId>
  17. <version>0.9.15</version>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.codehaus.sonar</groupId>
  22. <artifactId>sonar-batch</artifactId>
  23. <version>${sonarBatchVersion}</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. <!-- Unit tests -->
  27. <dependency>
  28. <groupId>org.codehaus.sonar</groupId>
  29. <artifactId>sonar-testing-harness</artifactId>
  30. <version>${sonarBatchVersion}</version>
  31. <scope>test</scope>
  32. <exclusions>
  33. <exclusion>
  34. <artifactId>commons-configuration</artifactId>
  35. <groupId>commons-configuration</groupId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.easytesting</groupId>
  41. <artifactId>fest-assert</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-shade-plugin</artifactId>
  50. <executions>
  51. <execution>
  52. <phase>package</phase>
  53. <goals>
  54. <goal>shade</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>