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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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-plugins</groupId>
  5. <artifactId>sonar-runner</artifactId>
  6. <version>2.1-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>sonar-runner-impl</artifactId>
  9. <name>Sonar Runner - Implementation</name>
  10. <dependencies>
  11. <!-- Would be available after bootstrapping so scope = provided -->
  12. <dependency>
  13. <groupId>org.codehaus.sonar-plugins</groupId>
  14. <artifactId>sonar-runner-api</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>ch.qos.logback</groupId>
  19. <artifactId>logback-classic</artifactId>
  20. <version>0.9.15</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.codehaus.sonar</groupId>
  25. <artifactId>sonar-batch</artifactId>
  26. <version>${sonar.buildVersion}</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.codehaus.sonar</groupId>
  31. <artifactId>sonar-plugin-api</artifactId>
  32. <version>${sonar.buildVersion}</version>
  33. <scope>provided</scope>
  34. <exclusions>
  35. <exclusion>
  36. <artifactId>commons-configuration</artifactId>
  37. <groupId>commons-configuration</groupId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!-- Unit tests -->
  42. <dependency>
  43. <groupId>org.codehaus.sonar</groupId>
  44. <artifactId>sonar-testing-harness</artifactId>
  45. <version>${sonar.buildVersion}</version>
  46. <scope>test</scope>
  47. <exclusions>
  48. <exclusion>
  49. <artifactId>commons-configuration</artifactId>
  50. <groupId>commons-configuration</groupId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.easytesting</groupId>
  56. <artifactId>fest-assert</artifactId>
  57. <version>1.4</version>
  58. <scope>test</scope>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-shade-plugin</artifactId>
  66. <executions>
  67. <execution>
  68. <phase>package</phase>
  69. <goals>
  70. <goal>shade</goal>
  71. </goals>
  72. <configuration>
  73. </configuration>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>