1 <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"> 2 3 <parent> 4 <groupId>net.anotheria</groupId> 5 <artifactId>moskito</artifactId> 6 <version>2.10.0</version> 7 <relativePath>../../pom.xml</relativePath> 8 </parent> 9 10 <modelVersion>4.0.0</modelVersion> 11 <artifactId>moskito-notification-providers</artifactId> 12 <version>2.10.0</version> 13 <name>notification providers</name> 14 15 <dependencies> 16 <!-- needed for mailgun --> 17 <dependency> 18 <groupId>com.sun.jersey</groupId> 19 <artifactId>jersey-client</artifactId> 20 <version>${jersey-version}</version> 21 </dependency> 22 <dependency> 23 <groupId>net.anotheria</groupId> 24 <artifactId>moskito-core</artifactId> 25 <version>${project.version}</version> 26 </dependency> 27 <dependency> 28 <groupId>org.slf4j</groupId> 29 <artifactId>slf4j-api</artifactId> 30 </dependency> 31 <dependency> 32 <groupId>ch.qos.logback</groupId> 33 <artifactId>logback-classic</artifactId> 34 <!--scope>test</scope--> 35 </dependency> 36 <!-- For email notifications via ano-comm, transitive dependencies to mail and activation--> 37 <dependency> 38 <groupId>net.anotheria</groupId> 39 <artifactId>ano-comm</artifactId> 40 </dependency> 41 </dependencies> 42 </project>