notification-spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-spring-boot-autoconfigure</artifactId>
<version>2.5.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">
<parent>
<groupId>co.fingerprintsoft</groupId>
<artifactId>starters-parent</artifactId>
<version>2.5.0</version>
<relativePath>../starters-parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>notification-spring-boot-autoconfigure</artifactId>
<version>2.5.0</version>
<properties>
<skip-notification-deploy>true</skip-notification-deploy>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${spring-boot.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-sms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-email</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-mailgun</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-bulksms</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-clickatell</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>co.fingerprintsoft</groupId>
<artifactId>notification-apns</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.relayrides</groupId>
<artifactId>pushy</artifactId>
<version>${pushy.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>${skip-notification-deploy}</skipNexusStagingDeployMojo>
<skipStaging>${skip-notification-deploy}</skipStaging>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>