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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>7.1-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. </dependency>
  22. <dependency>
  23. <groupId>commons-io</groupId>
  24. <artifactId>commons-io</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-lang</groupId>
  28. <artifactId>commons-lang</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.google.code.findbugs</groupId>
  32. <artifactId>jsr305</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.sonarsource.sonarqube</groupId>
  37. <artifactId>sonar-plugin-api</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <!-- unit testing -->
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.assertj</groupId>
  48. <artifactId>assertj-core</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mockito</groupId>
  53. <artifactId>mockito-core</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  61. <artifactId>sonar-packaging-maven-plugin</artifactId>
  62. <configuration>
  63. <pluginKey>xoo</pluginKey>
  64. <pluginName>Xoo</pluginName>
  65. <pluginClass>org.sonar.xoo.XooPlugin</pluginClass>
  66. <sonarLintSupported>true</sonarLintSupported>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>