pawapay-java-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.katorymnd</groupId>
<artifactId>pawapay-java-sdk</artifactId>
<version>2.6.6</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>com.katorymnd</groupId>
<artifactId>pawapay-java-sdk</artifactId>
<version>2.6.6</version>
<packaging>jar</packaging>
<name>PawaPay Java SDK</name>
<description>Official Premium Java PawaPay SDK by Katorymnd Web Solutions for PawaPay mobile
money API integration.</description>
<url>https://katorymnd.com/pawapay-payment-sdk/java</url>
<licenses>
<license>
<name>Katorymnd Commercial PawaPay License</name>
<url>https://katorymnd.com/pawapay-payment-sdk/java</url>
<distribution>repo</distribution>
<comments>Java PawaPay SDK requiring a valid license key for runtime operation.
Free to download and evaluate. Domain-based licensing (1, 3, or 10 domains). All
sales final. See https://katorymnd.com/pawapay-payment-sdk/java for pricing and
terms.</comments>
</license>
</licenses>
<organization>
<name>Katorymnd Web Solutions</name>
<url>https://katorymnd.com</url>
</organization>
<developers>
<developer>
<id>katorymnd</id>
<name>Kato Raymond</name>
<email>support@katorymnd.com</email>
<organization>Katorymnd Web Solutions</organization>
<organizationUrl>https://katorymnd.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Maintainer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/katorymnd/pawapay-java-sdk.git</connection>
<developerConnection>scm:git:ssh://github.com:katorymnd/pawapay-java-sdk.git</developerConnection>
<url>https://github.com/katorymnd/pawapay-java-sdk</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/katorymnd/pawapay-java-sdk/issues</url>
</issueManagement>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<exec.mainClass>com.katorymnd.pawapay.examples.web.Application</exec.mainClass>
<!-- Dependency Versions -->
<jackson.version>2.17.0</jackson.version>
<javalin.version>6.3.0</javalin.version>
<logback.version>1.4.14</logback.version>
<!-- Force Jetty to a patched version -->
<jetty.version>11.0.25</jetty.version>
</properties>
<!-- Dependency Management to Force Versions -->
<dependencyManagement>
<dependencies>
<!-- Force Jetty BOM to ensure all Jetty modules are upgraded -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-bom</artifactId>
<version>${jetty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
<!-- Jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
</dependency>
<!-- Logback -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- Javalin (Will now use the forced Jetty version from dependencyManagement) -->
<dependency>
<groupId>io.javalin</groupId>
<artifactId>javalin</artifactId>
<version>${javalin.version}</version>
</dependency>
<!-- Force Jetty Upgrade to patch CVE-2026-2332 -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-io</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-core-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<!-- Mockito -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.12.0</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>natives/**</exclude>
<exclude>web/**</exclude>
<exclude>com/katorymnd/pawapay/sdk/utils/vm/bytecode.bin</exclude>
<exclude>com/katorymnd/pawapay/sdk/utils/vm/opcodes.json</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>natives/**</include>
</includes>
</resource>
<resource>
<directory>core-rust/target/release</directory>
<includes>
<include>*.dll</include>
<include>*.so</include>
<include>*.dylib</include>
</includes>
<targetPath>native</targetPath>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>17</source>
<target>17</target>
<excludes>
<exclude>**/*2.java</exclude>
<exclude>com/katorymnd/pawapay/examples/direct/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<sourceFileExcludes>
<sourceFileExclude>**/*2.java</sourceFileExclude>
<sourceFileExclude>**/examples/direct/**/*.java</sourceFileExclude>
</sourceFileExcludes>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>cargo-build</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>cargo</executable>
<workingDirectory>${project.basedir}/core-rust</workingDirectory>
<arguments>
<argument>build</argument>
<argument>--release</argument>
</arguments>
</configuration>
</execution>
</executions>
<configuration>
<mainClass>${exec.mainClass}</mainClass>
</configuration>
</plugin>
<!-- OWASP Dependency Vulnerability Scanner -->
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>11.1.0</version>
<configuration>
<failBuildOnCVSS>7</failBuildOnCVSS>
<formats>
<format>HTML</format>
<format>JSON</format>
</formats>
<outputDirectory>${project.build.directory}/dependency-check</outputDirectory>
<suppressionFiles>
<suppressionFile>owasp-suppressions.xml</suppressionFile>
</suppressionFiles>
<!-- DISABLE OSS INDEX TO PREVENT 401 ERRORS -->
<ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled>
<!-- OPTIONAL: DISABLE .NET ANALYZER TO PREVENT WARNINGS -->
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.fizzed</groupId>
<artifactId>fizzed-watcher-maven-plugin</artifactId>
<version>1.0.6</version>
<configuration>
<watches>
<watch>
<directory>src/main/java</directory>
</watch>
<watch>
<directory>src/main/resources/web/templates</directory>
</watch>
</watches>
<goals>
<goal>clean</goal>
<goal>compile</goal>
<goal>exec:java</goal>
</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Attach Sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Attach Javadocs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG Signing -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Sonatype Central Publishing Plugin -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>