jsmpp-pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jsmpp</groupId> <artifactId>jsmpp-pom</artifactId> <version>3.0.1</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>org.jsmpp</groupId> <artifactId>jsmpp-pom</artifactId> <version>3.0.1</version> <packaging>pom</packaging> <name>jSMPP - Parent</name> <description>SMPP library for Java</description> <url>https://jsmpp.org</url> <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> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> <buildNumber>${maven.build.timestamp}</buildNumber> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j.version>1.7.36</slf4j.version> <junit.version>4.13.2</junit.version> <testng.version>6.14.3</testng.version> <telecom-charsets.version>1.0.1</telecom-charsets.version> <commons-codec.version>1.15</commons-codec.version> <git.properties>git.properties</git.properties> <maven-bundle-plugin.version>5.1.8</maven-bundle-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <maven-release-plugin.version>3.0.1</maven-release-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <maven-wagon.version>3.5.3</maven-wagon.version> <git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version> <properties-maven-plugin.version>1.0.0</properties-maven-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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>${maven-wagon.version}</version> </extension> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>${maven-wagon.version}</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin.version}</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${git-commit-id-plugin.version}</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <!-- that's the default value, you don't have to set it --> <prefix>git</prefix> <!-- that's the default value --> <dateFormat>dd.MM.yyyy '@' HH:mm:ss z</dateFormat> <!-- false is default here, it prints some more information during the build --> <verbose>true</verbose> <!-- this is false by default, forces the plugin to generate the git.properties file --> <generateGitPropertiesFile>true</generateGitPropertiesFile> <!-- The path for the to be generated properties file, it's relative to ${project.basedir} --> <generateGitPropertiesFilename>${git.properties}</generateGitPropertiesFilename> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>${properties-maven-plugin.version}</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${git.properties}</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Implementation-Version>${project.version}-${git.branch}.${git.commit.id.abbrev}</Implementation-Version> <Dependencies>org.apache.log4j</Dependencies> </manifestEntries> </archive> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <scm> <url>https://github.com/opentelecoms-org/jsmpp</url> <connection>scm:git:ssh://git@github.com:opentelecoms-org/jsmpp.git</connection> <developerConnection>scm:git:ssh://git@github.com:opentelecoms-org/jsmpp.git</developerConnection> </scm> </project>