aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/pom.xml
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2011-07-18 16:41:00 +0400
committerEvgeny Mandrikov <mandrikov@gmail.com>2011-07-18 23:34:06 +0400
commitded6ace3a7761468a97b6ac7fc7b924cd1147b96 (patch)
tree053dd641fd2e2457e118c50ca006cd0478d1f9b4 /sonar-server/pom.xml
parentba62b82ea636be85d3c3c316174f2c8e4ad551ff (diff)
downloadsonarqube-ded6ace3a7761468a97b6ac7fc7b924cd1147b96.tar.gz
sonarqube-ded6ace3a7761468a97b6ac7fc7b924cd1147b96.zip
SONAR-2600,SONAR-2601 Add ability to send emails
Add simple page with SMTP configuration and with ability to send test email. When SMTP configured - send notifications via email.
Diffstat (limited to 'sonar-server/pom.xml')
-rw-r--r--sonar-server/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml
index 53441136766..df611dabce4 100644
--- a/sonar-server/pom.xml
+++ b/sonar-server/pom.xml
@@ -155,6 +155,11 @@
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-util</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-email</artifactId>
+ <version>1.2</version>
+ </dependency>
<!-- unit tests -->
<dependency>
@@ -162,6 +167,12 @@
<artifactId>sonar-testing-harness</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>dumbster</groupId>
+ <artifactId>dumbster</artifactId>
+ <version>1.6</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>