notification-bulksms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>co.fingerprintsoft</groupId> <artifactId>notification-bulksms</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-bulksms</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>com.mashape.unirest</groupId> <artifactId>unirest-java</artifactId> <version>${unirest-java.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>co.fingerprintsoft</groupId> <artifactId>notification-sms</artifactId> <version>${project.version}</version> </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>