<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.6.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>za.co.taulite.tools</groupId>
|
<artifactId>smppclient</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>smppclient</name>
|
<description>SMPP Command Line Tool</description>
|
<properties>
|
<java.version>11</java.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.shell</groupId>
|
<artifactId>spring-shell-starter</artifactId>
|
<version>2.0.1.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>org.jsmpp</groupId>
|
<artifactId>jsmpp</artifactId>
|
<version>3.0.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
<version>2.8.5</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
</dependencies>
|
|
<repositories>
|
<repository>
|
<id>releases</id>
|
<url>http://ihbuild1.ih.taulite.co.za:8081/repository/maven-releases/</url>
|
</repository>
|
<repository>
|
<id>snapshots</id>
|
<url>http://ihbuild1.ih.taulite.co.za:8081/repository/maven-snapshots/</url>
|
</repository>
|
</repositories>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|