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

123456789101112131415161718192021222324252627282930313233343536
  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. <groupId>org.sonarsource.sonarqube.tests</groupId>
  6. <artifactId>test-core-plugin</artifactId>
  7. <version>0.1-SNAPSHOT</version>
  8. <packaging>sonar-plugin</packaging>
  9. <name>Test Core Plugin</name>
  10. <description>Fake core plugin used by tests</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.codehaus.sonar</groupId>
  14. <artifactId>sonar-plugin-api</artifactId>
  15. <version>4.5.4</version>
  16. <scope>provided</scope>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <sourceDirectory>src</sourceDirectory>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  24. <artifactId>sonar-packaging-maven-plugin</artifactId>
  25. <version>1.15</version>
  26. <extensions>true</extensions>
  27. <configuration>
  28. <pluginKey>core</pluginKey>
  29. <pluginClass>CorePlugin</pluginClass>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. </project>