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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.sonarsource.sonarqube</groupId>
  6. <artifactId>sonarqube</artifactId>
  7. <version>5.4-SNAPSHOT</version>
  8. <relativePath>../..</relativePath>
  9. </parent>
  10. <artifactId>sonar-xoo-plugin</artifactId>
  11. <name>SonarQube :: Plugins :: Xoo</name>
  12. <packaging>sonar-plugin</packaging>
  13. <description>Sample of plugin to document and test available APIs</description>
  14. <properties>
  15. <sonar.skip>true</sonar.skip>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.google.guava</groupId>
  20. <artifactId>guava</artifactId>
  21. <version>18.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>commons-io</groupId>
  25. <artifactId>commons-io</artifactId>
  26. <version>2.4</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-lang3</artifactId>
  31. <version>3.3.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.code.findbugs</groupId>
  35. <artifactId>jsr305</artifactId>
  36. <version>3.0.0</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.sonarsource.sonarqube</groupId>
  41. <artifactId>sonar-plugin-api</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. <!-- unit testing -->
  45. <dependency>
  46. <groupId>org.sonarsource.sonarqube</groupId>
  47. <artifactId>sonar-testing-harness</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  55. <artifactId>sonar-packaging-maven-plugin</artifactId>
  56. <configuration>
  57. <pluginKey>xoo</pluginKey>
  58. <pluginName>Xoo</pluginName>
  59. <pluginClass>org.sonar.xoo.XooPlugin</pluginClass>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>