javax-mail
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.jaloon</groupId> <artifactId>javax-mail</artifactId> <version>1.6.7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception, which is available at https://www.gnu.org/software/classpath/license.html. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> <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>io.github.jaloon</groupId> <artifactId>javax-mail</artifactId> <version>1.6.7</version> <packaging>jar</packaging> <name>JavaMail API</name> <description>JavaMail API (outlook supported)</description> <url>https://github.com/jaloon/javax-mail</url> <organization> <name>Oracle</name> <url>http://www.oracle.com</url> </organization> <licenses> <license> <name>EPL 2.0</name> <url>http://www.eclipse.org/legal/epl-2.0</url> <distribution>repo</distribution> </license> <license> <name>GPL2 w/ CPE</name> <url>https://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> <license> <name>EDL 1.0</name> <url>http://www.eclipse.org/org/documents/edl-v10.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>shannon</id> <name>Bill Shannon</name> <email>bill.shannon@oracle.com</email> <organization>Oracle</organization> <roles> <role>lead</role> </roles> </developer> <developer> <id>jaloon</id> <name>Jaloon Chen</name> <email>jazurechen@163.com</email> </developer> </developers> <scm> <connection>https://github.com/jaloon/javax-mail.git</connection> <developerConnection>scm:git:ssh://git@github.com:jaloon/javax-mail.git</developerConnection> <url>https://github.com/jaloon/javax-mail</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/jaloon/javax-mail/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.sun.activation</groupId> <artifactId>jakarta.activation</artifactId> <version>1.2.2</version> </dependency> </dependencies> <build> <plugins> <!-- Configure compiler plugin to print lint warnings. Need to exclude options warning because bootstrap classpath isn't set (on purpose). Need to exclude path warnings because Maven includes source directories that don't exist (e.g., generated-sources). --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> <compilerArgs> <arg>-Xlint</arg> <arg>-Xlint:-options</arg> <arg>-Xlint:-path</arg> <arg>-Werror</arg> </compilerArgs> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <!-- 打包源码 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- javadoc插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <additionalOptions> <!-- 禁用文档检查,避免构建过程报错 --> <additionalOption>-Xdoclint:none</additionalOption> </additionalOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- central发布插件 --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>jaloon</keyname> <passphraseServerId>gpg-passphrase</passphraseServerId> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>