jsmpp-pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.jsmpp</groupId> <artifactId>jsmpp-pom</artifactId> <version>3.0.0-wso2v4</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> <parent> <groupId>org.wso2</groupId> <artifactId>wso2</artifactId> <version>1.4</version> </parent> <groupId>org.wso2.jsmpp</groupId> <artifactId>jsmpp-pom</artifactId> <version>3.0.0-wso2v4</version> <packaging>pom</packaging> <name>jSMPP - Parent</name> <description>SMPP library for Java</description> <url>https://jsmpp.org</url> <scm> <connection>scm:git:https://github.com/wso2/wso2-jsmpp.git</connection> <developerConnection>scm:git:https://github.com/wso2/wso2-jsmpp.git</developerConnection> <url>https://github.com/wso2/wso2-jsmpp.git</url> <tag>v3.0.0-wso2v4</tag> </scm> <distributionManagement> <repository> <id>nexus-releases</id> <name>WSO2 Release Distribution Repository</name> <url>https://maven.wso2.org/nexus/service/local/staging/deploy/maven2/</url> </repository> <!-- <snapshotRepository>--> <!-- <id>wso2.snapshots</id>--> <!-- <name>Apache Snapshot Repository</name>--> <!-- <url>https://maven.wso2.org/nexus/content/repositories/snapshots/</url>--> <!-- </snapshotRepository>--> </distributionManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>jsmpp</module> <module>jsmpp-examples</module> </modules> <developers> <developer> <name>Denis Kostousov</name> </developer> <developer> <name>Nuruddin Ashr</name> </developer> <developer> <name>Daniel Pocock</name> <email>daniel@pocock.pro</email> <url>https://danielpocock.com</url> </developer> <developer> <name>Pim Moerenhout</name> <email>pim.moerenhout@gmail.com</email> </developer> </developers> <properties> <slf4j.version>1.7.36</slf4j.version> <junit.version>4.13.2</junit.version> <testng.version>6.14.3</testng.version> <maven-bundle-plugin.version>5.1.9</maven-bundle-plugin.version> <telecom-charsets.version>1.0.1</telecom-charsets.version> <commons-codec.version>1.15</commons-codec.version> <maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons-codec.version}</version> </dependency> <dependency> <groupId>com.github.brake.threegpp</groupId> <artifactId>telecom-charsets</artifactId> <version>${telecom-charsets.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>clean install</preparationGoals> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> </plugins> </build> </project>