feedback
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.geoladris.plugins</groupId>
<artifactId>feedback</artifactId>
<version>7.0.0</version>
</dependency><?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.geoladris</groupId>
<artifactId>plugins</artifactId>
<version>7.0.0</version>
</parent>
<groupId>com.github.geoladris.plugins</groupId>
<artifactId>feedback</artifactId>
<name>Feedback</name>
<description>Feedback plugin for Geoladris</description>
<url>https://github.com/geoladris/plugins</url>
<scm>
<connection>scm:git:git://github.com/geoladris/plugins.git</connection>
<developerConnection>scm:git:ssh://github.com:geoladris/plugins.git</developerConnection>
<url>http://github.com/geoladris/plugins/tree/master/feedback</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>base</artifactId>
<version>${project.version}</version>
</dependency>
<!-- API and implementation, as reported here: https://java.net/projects/javamail/pages/Home -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.5.2</version>
</dependency>
<!-- J2EE -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>