mail-queue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.ralph-schuster</groupId> <artifactId>mail-queue</artifactId> <version>1.2.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>eu.ralph-schuster</groupId> <artifactId>mail</artifactId> <version>1.2.1</version> </parent> <properties> <project.home>https://github.com/technicalguru/java-mail</project.home> <java.version>21</java.version> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <artifactId>mail-queue</artifactId> <packaging>jar</packaging> <name>${project.groupId}.${project.artifactId}</name> <description>Queuing e-mails for delivery and process them</description> <dependencies> <dependency> <groupId>com.github.cowwoc.token-bucket</groupId> <artifactId>token-bucket</artifactId> <version>6.1</version> <exclusions> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>simple-java-mail</artifactId> <version>8.11.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <header><![CDATA[<a href="${project.home}" target="_new">Visit the ${project.name} Homepage</a>]]></header> <detectJavaApiLink>false</detectJavaApiLink> </configuration> </plugin> </plugins> </build> </project>