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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.2-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-plugin-api-deps</artifactId>
  10. <packaging>jar</packaging>
  11. <name>SonarQube :: Plugin API Dependencies</name>
  12. <description>Deprecated transitive dependencies of sonar-plugin-api</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.google.code.gson</groupId>
  16. <artifactId>gson</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.google.guava</groupId>
  20. <artifactId>guava</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-codec</groupId>
  24. <artifactId>commons-codec</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-collections</groupId>
  28. <artifactId>commons-collections</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-io</groupId>
  32. <artifactId>commons-io</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-lang</groupId>
  36. <artifactId>commons-lang</artifactId>
  37. </dependency>
  38. <!-- Needed by old versions of Java plugin (JavaClasspath) -->
  39. <dependency>
  40. <groupId>org.apache.maven</groupId>
  41. <artifactId>maven-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.maven</groupId>
  45. <artifactId>maven-artifact</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-shade-plugin</artifactId>
  53. <executions>
  54. <execution>
  55. <phase>package</phase>
  56. <goals>
  57. <goal>shade</goal>
  58. </goals>
  59. <configuration>
  60. <minimizeJar>false</minimizeJar>
  61. <createDependencyReducedPom>true</createDependencyReducedPom>
  62. </configuration>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>