sejda-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sejda</groupId>
<artifactId>sejda-core</artifactId>
<version>6.0.0.M5</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<url>https://www.sejda.org</url>
<parent>
<groupId>org.sejda</groupId>
<artifactId>sejda-parent</artifactId>
<version>6.0.0.M5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>sejda-core</artifactId>
<packaging>jar</packaging>
<name>sejda core</name>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>**/*.properties</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.sejda.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
--add-opens org.sejda.model/org.sejda.model.parameter.base=ALL-UNNAMED
--add-opens org.sejda.model/org.sejda.model.validation.validator=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.sejda</groupId>
<artifactId>sejda-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<!-- we provide an implementation for JSR-303 since validation is on by default -->
<!-- exclude this in your POM if your validation is turned off in your configuration -->
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
</dependency>
<!-- exclude this in your POM if your validation is turned off in your configuration or your validation is configured to not use EL based message interpolation
https://docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/#non-el-message-interpolator-->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
</dependency>
<dependency>
<groupId>org.sejda</groupId>
<artifactId>sambox</artifactId>
<version>${sambox.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>