ser-mail-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.pfpt.ser</groupId> <artifactId>ser-mail-api</artifactId> <version>1.0.0</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <groupId>io.pfpt.ser</groupId> <artifactId>ser-mail-api</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Proofpoint Secure Email Relay Mail API Java Library</name> <description>A Java wrapper for the Proofpoint Secure Email Relay Mail API</description> <url>https://github.com/pfptcommunity/ser-mail-api-java</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>pfptcommunity</name> <email>support@pfpt.io</email> </developer> </developers> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <scm> <connection>scm:git:https://github.com/pfptcommunity/ser-mail-api-java.git</connection> <developerConnection>scm:git:git@github.com:pfptcommunity/ser-mail-api-java.git</developerConnection> <url>https://github.com/pfptcommunity/ser-mail-api-java</url> </scm> <dependencies> <dependency> <groupId>jakarta.json</groupId> <artifactId>jakarta.json-api</artifactId> <version>2.1.3</version> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.json</artifactId> <version>2.0.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>jakarta.json.bind</groupId> <artifactId>jakarta.json.bind-api</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>org.eclipse</groupId> <artifactId>yasson</artifactId> <version>3.0.4</version> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <!-- Source JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG Signing --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Central Publishing Plugin --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>false</autoPublish> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com/api/v1/publish/maven/snapshots</url> </snapshotRepository> <repository> <id>central</id> <url>https://central.sonatype.com/api/v1/publish/maven/releases</url> </repository> </distributionManagement> </project>