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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>2.11</version>
  8. <relativePath>../..</relativePath>
  9. </parent>
  10. <groupId>org.codehaus.sonar.plugins</groupId>
  11. <artifactId>sonar-email-notifications-plugin</artifactId>
  12. <packaging>sonar-plugin</packaging>
  13. <name>Sonar :: Plugins :: Email Notifications</name>
  14. <description>Email Notifications</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.codehaus.sonar</groupId>
  18. <artifactId>sonar-plugin-api</artifactId>
  19. <scope>provided</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.codehaus.sonar</groupId>
  23. <artifactId>sonar-core</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-email</artifactId>
  29. <version>1.2</version>
  30. </dependency>
  31. <!-- unit tests -->
  32. <dependency>
  33. <groupId>org.codehaus.sonar</groupId>
  34. <artifactId>sonar-testing-harness</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>dumbster</groupId>
  39. <artifactId>dumbster</artifactId>
  40. <version>1.6</version>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.codehaus.sonar</groupId>
  48. <artifactId>sonar-packaging-maven-plugin</artifactId>
  49. <extensions>true</extensions>
  50. <configuration>
  51. <pluginName>Email notifications</pluginName>
  52. <pluginClass>org.sonar.plugins.emailnotifications.EmailNotificationsPlugin</pluginClass>
  53. <useChildFirstClassLoader>true</useChildFirstClassLoader>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>