mailkite-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.mailkite</groupId>
<artifactId>mailkite-spring-boot-starter</artifactId>
<version>0.1.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.mailkite</groupId>
<artifactId>mailkite-spring-boot-starter</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>MailKite Spring Boot Starter</name>
<description>Spring Boot auto-configuration that registers a MailSender/JavaMailSender bean backed by the MailKite API — set mailkite.api-key, keep using Spring's mail abstraction.</description>
<url>https://mailkite.dev/docs/integrations/spring-boot</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>fijiwebdesign</id>
<name>Gabe</name>
<email>bucabay@gmail.com</email>
<organization>MailKite</organization>
<organizationUrl>https://mailkite.dev</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/mailkite/spring-boot-starter.git</connection>
<developerConnection>scm:git:ssh://git@github.com/mailkite/spring-boot-starter.git</developerConnection>
<url>https://github.com/mailkite/spring-boot-starter</url>
</scm>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>3.3.4</spring-boot.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- The MailKite Java SDK this starter wraps. -->
<dependency>
<groupId>dev.mailkite</groupId>
<artifactId>mailkite</artifactId>
<version>[0.11,2.0)</version>
</dependency>
<!-- Spring's mail abstraction (MailSender / JavaMailSender / SimpleMailMessage / MimeMessage). -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<!-- javax/jakarta mail types (MimeMessage) that JavaMailSender needs, without pulling in
a real SMTP transport — MimeMessageMailKiteMailSender only reads the message, it never
connects anywhere. -->
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>angus-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Central requires a sources jar. -->
<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>
<!-- Central requires a javadoc jar. doclint off so sparse comments don't fail the build. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
<!-- Central requires GPG-signed artifacts. Passphrase comes from MAVEN_GPG_PASSPHRASE in CI. -->
<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>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<!-- Publishes to the Sonatype Central Portal on `mvn deploy` (server-id `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>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</project>