Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.sonarsource.sonar-runner</groupId>
  5. <artifactId>sonar-runner</artifactId>
  6. <version>2.5-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>sonar-runner-batch</artifactId>
  9. <name>SonarQube Runner - Batch</name>
  10. <properties>
  11. <sonarBatchVersion>5.2-SNAPSHOT</sonarBatchVersion>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${project.groupId}</groupId>
  16. <artifactId>sonar-runner-batch-interface</artifactId>
  17. <version>${project.version}</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. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mockito</groupId>
  51. <artifactId>mockito-all</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-shade-plugin</artifactId>
  60. <executions>
  61. <execution>
  62. <phase>package</phase>
  63. <goals>
  64. <goal>shade</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>