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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.codehaus.sonar.tests</groupId>
  6. <artifactId>test-libs-plugin</artifactId>
  7. <version>0.1-SNAPSHOT</version>
  8. <packaging>sonar-plugin</packaging>
  9. <name>Test Libs Plugin</name>
  10. <description>Fake plugin that embeds some libraries</description>
  11. <dependencies>
  12. <!-- embedded libs. Chosen because small ! -->
  13. <dependency>
  14. <groupId>commons-email</groupId>
  15. <artifactId>commons-email</artifactId>
  16. <version>20030310.165926</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>commons-daemon</groupId>
  20. <artifactId>commons-daemon</artifactId>
  21. <version>1.0.15</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.codehaus.sonar</groupId>
  25. <artifactId>sonar-plugin-api</artifactId>
  26. <version>4.5.4</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <sourceDirectory>src</sourceDirectory>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.codehaus.sonar</groupId>
  35. <artifactId>sonar-packaging-maven-plugin</artifactId>
  36. <version>1.13</version>
  37. <extensions>true</extensions>
  38. <configuration>
  39. <pluginKey>testlibs</pluginKey>
  40. <pluginClass>LibsPlugin</pluginClass>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>