crsh.plugins.mail
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.plugins.mail</artifactId>
<version>1.3.0-beta2</version>
</dependency><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">
<parent>
<artifactId>crsh.plugins</artifactId>
<groupId>org.crsh</groupId>
<version>1.3.0-beta2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.crsh</groupId>
<artifactId>crsh.plugins.mail</artifactId>
<packaging>jar</packaging>
<version>1.3.0-beta2</version>
<name>CRaSH Plugin - Mail plugin</name>
<description>This plugin allows to integrate JavaMail in CRaSH and provides a mail command</description>
<dependencies>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.core</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.subethamail</groupId>
<artifactId>subethasmtp</artifactId>
<version>3.1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>