Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pom.xml 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.sonarsource.sonarqube.tests</groupId>
  6. <artifactId>plugins</artifactId>
  7. <version>6.5-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>fake-billing-plugin</artifactId>
  10. <packaging>sonar-plugin</packaging>
  11. <description>Plugins :: Fake Billing Plugin</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.sonarsource.sonarqube</groupId>
  15. <artifactId>sonar-plugin-api</artifactId>
  16. <version>${apiVersion}</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.sonarsource.sonarqube</groupId>
  21. <artifactId>sonar-server</artifactId>
  22. <version>${apiVersion}</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  30. <artifactId>sonar-packaging-maven-plugin</artifactId>
  31. <version>1.15</version>
  32. <extensions>true</extensions>
  33. <configuration>
  34. <pluginClass>FakeBillingPlugin</pluginClass>
  35. <pluginKey>billing</pluginKey>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>