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

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