mail-sender
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.fathzer</groupId> <artifactId>mail-sender</artifactId> <version>0.0.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.fathzer</groupId> <artifactId>mail-sender</artifactId> <version>0.0.1</version> <name>mail-sender</name> <description>A minimalist java mail client API to send emails through external SMTP server.</description> <url>https://github.com/fathzer/mail-sender</url> <scm> <url>https://github.com/fathzer/mail-sender.git</url> <connection>https://github.com/mail-sender.git</connection> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>Fathzer</id> <name>Jean-Marc Astesana</name> <email>admin@fathzer.com</email> </developer> </developers> <distributionManagement> <repository> <id>ReleaseFathzer</id> <name>Release fathzer.com</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>SnapshotFathzer</id> <name>Snapshot fathzer.com</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.source>8</maven.compiler.source> <sonar.organization>fathzer</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> </properties> <dependencies> <dependency> <groupId>com.sun.mail</groupId> <artifactId>jakarta.mail</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.7.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <!-- JUnit 5 requires Surefire version 2.22.0 or higher --> <version>2.22.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>1.22</version> <configuration> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>java18</artifactId> <version>1.0</version> </signature> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.kohsuke</groupId> <artifactId>pgp-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <!-- For obvious security reasons, keyFile and pass phrase are not provided, they should be in files present in the user's home directory --> <secretkey>keyfile:${user.home}/fathzer_private_key.asc</secretkey> <passphrase>file:${user.home}/fathzer_key_pwd.txt</passphrase> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <configuration> <!-- see https://stackoverflow.com/questions/69320220/maven-javadoc-listed-classes-twice --> <sourcepath>${basedir}/src/main/java</sourcepath> <header>${project.version}</header> <bottom> Copyright © 2023 fathzer.com. Licensed under Apache 2.0. </bottom> <doclint>all</doclint> </configuration> <executions> <execution> <id>javadoc_generation</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>