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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.sonarsource.sonarqube.tests</groupId>
  7. <artifactId>plugins</artifactId>
  8. <version>7.0-RC1</version>
  9. </parent>
  10. <artifactId>wait-at-platform-level4-plugin</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. <packaging>sonar-plugin</packaging>
  13. <name>Plugins :: Wait at platform level4 initialization phase</name>
  14. <description>Test for failing Elasticsearch on platform4</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.sonarsource.sonarqube</groupId>
  18. <artifactId>sonar-plugin-api</artifactId>
  19. <version>${apiVersion}</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.guava</groupId>
  24. <artifactId>guava</artifactId>
  25. <version>17.0</version>
  26. <exclusions>
  27. <exclusion>
  28. <!-- should be declared with scope provided -->
  29. <groupId>com.google.code.findbugs</groupId>
  30. <artifactId>jsr305</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  39. <artifactId>sonar-packaging-maven-plugin</artifactId>
  40. <version>1.15</version>
  41. <configuration>
  42. <pluginClass>WaitAtPlaformLevel4Plugin</pluginClass>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>