EzMail
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ezlibs</groupId> <artifactId>EzMail</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.ezlibs</groupId> <artifactId>EzMail</artifactId> <name>EzMail</name> <version>1.0.0</version> <description>Simple library for sending HTML templated emails.</description> <url>https://github.com/DanJSG/EzMail</url> <developers> <developer> <name>Dan Jackson</name> <organizationUrl>https://github.com/DanJSG</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/DanJSG/EzMail.git</connection> <developerConnection>scm:git:ssh://github.com:DanJSG/EzMail.git</developerConnection> <url>http://github.com/DanJSG/EzMail/tree/master</url> </scm> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <passphrase>${gpg.passphrase}</passphrase> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>com.sun.mail</exclude> </excludes> </artifactSet> <relocations> <relocation> <pattern>org.unbescape</pattern> <shadedPattern>org.ezlibs.shaded.org.unbescape</shadedPattern> </relocation> <relocation> <pattern>org.thymeleaf</pattern> <shadedPattern>org.ezlibs.shaded.org.thymeleaf</shadedPattern> </relocation> <relocation> <pattern>org.slf4j</pattern> <shadedPattern>org.ezlibs.shaded.org.slf4j</shadedPattern> </relocation> <relocation> <pattern>org.attoparser</pattern> <shadedPattern>org.ezlibs.shaded.org.attoparser</shadedPattern> </relocation> <relocation> <pattern>ognl</pattern> <shadedPattern>org.ezlibs.shaded.ognl</shadedPattern> </relocation> <relocation> <pattern>javassist</pattern> <shadedPattern>org.ezlibs.shaded.javassist</shadedPattern> </relocation> <relocation> <pattern>com.sun.activation</pattern> <shadedPattern>org.ezlibs.shaded.com.sun.activation</shadedPattern> </relocation> <relocation> <pattern>javax.activation</pattern> <shadedPattern>org.ezlibs.shaded.javax.activation</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> <version>1.6.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.7.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>