|
| 1 | +<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/maven-v4_0_0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + |
| 4 | + <artifactId>jsignpdf-engine-api</artifactId> |
| 5 | + <packaging>jar</packaging> |
| 6 | + <name>${project.artifactId}</name> |
| 7 | + <description>JSignPdf signing-engine SPI and shared signing model</description> |
| 8 | + |
| 9 | + <parent> |
| 10 | + <groupId>com.github.kwart.jsign</groupId> |
| 11 | + <artifactId>jsignpdf-root</artifactId> |
| 12 | + <version>3.1.0-SNAPSHOT</version> |
| 13 | + <relativePath>../../pom.xml</relativePath> |
| 14 | + </parent> |
| 15 | + |
| 16 | + <!-- |
| 17 | + The engine API is the backend-neutral core: the SPI (SigningEngine / Capability / EngineConfig), |
| 18 | + the shared signing model (BasicSignerOptions, types, listeners) and the configuration / keystore |
| 19 | + utilities every engine relies on. It deliberately depends ONLY on BouncyCastle + commons (and |
| 20 | + the PKCS#11 helper); it must never depend on a signing backend (OpenPDF / PDFBox / DSS). |
| 21 | + --> |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.bouncycastle</groupId> |
| 25 | + <artifactId>bcprov-jdk18on</artifactId> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>org.bouncycastle</groupId> |
| 29 | + <artifactId>bcpkix-jdk18on</artifactId> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.apache.commons</groupId> |
| 33 | + <artifactId>commons-lang3</artifactId> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>commons-io</groupId> |
| 37 | + <artifactId>commons-io</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>com.github.kwart.jsign</groupId> |
| 41 | + <artifactId>jsign-pkcs11</artifactId> |
| 42 | + </dependency> |
| 43 | + </dependencies> |
| 44 | +</project> |
0 commit comments