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

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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.sonarsource.sonarqube</groupId>
  7. <artifactId>sonarqube</artifactId>
  8. <version>6.5-SNAPSHOT</version>
  9. <relativePath>../..</relativePath>
  10. </parent>
  11. <artifactId>foo-plugin-v1</artifactId>
  12. <name>SonarQube :: Plugins :: Foo (V1)</name>
  13. <packaging>sonar-plugin</packaging>
  14. <description>Sample of plugin to document and test available APIs</description>
  15. <properties>
  16. <sonar.skip>true</sonar.skip>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.google.guava</groupId>
  21. <artifactId>guava</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>commons-io</groupId>
  25. <artifactId>commons-io</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>commons-lang</groupId>
  29. <artifactId>commons-lang</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.google.code.findbugs</groupId>
  33. <artifactId>jsr305</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.sonarsource.sonarqube</groupId>
  38. <artifactId>sonar-plugin-api</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. <!-- unit testing -->
  42. <dependency>
  43. <groupId>junit</groupId>
  44. <artifactId>junit</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.assertj</groupId>
  49. <artifactId>assertj-core</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mockito</groupId>
  54. <artifactId>mockito-core</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  62. <artifactId>sonar-packaging-maven-plugin</artifactId>
  63. <configuration>
  64. <pluginKey>foo</pluginKey>
  65. <pluginName>Foo</pluginName>
  66. <pluginClass>org.sonar.foo.FooPlugin</pluginClass>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>