chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:59:42 +08:00
commit 59f8f60dad
348 changed files with 139133 additions and 0 deletions
+275
View File
@@ -0,0 +1,275 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2025-2026 Hancom Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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.opendataloader</groupId>
<artifactId>opendataloader-pdf-parent</artifactId>
<version>0.0.0</version>
<packaging>pom</packaging>
<name>OpenDataLoader PDF</name>
<description>OpenDataLoader PDF</description>
<url>https://github.com/opendataloader-project/opendataloader-pdf</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>opendataloader-project</name>
<email>open.dataloader@hancom.com</email>
<organization>opendataloader-project</organization>
<organizationUrl>https://github.com/opendataloader-project</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/opendataloader-project/opendataloader-pdf.git</connection>
<developerConnection>
scm:git:ssh://github.com:opendataloader-project/opendataloader-pdf.git
</developerConnection>
<url>https://github.com/opendataloader-project/opendataloader-pdf/tree/main</url>
</scm>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<verapdf.version>1.31.99</verapdf.version>
<verapdf.wcag.algs.version>1.31.33</verapdf.wcag.algs.version>
<jackson.databind.version>2.22.0</jackson.databind.version>
<junit.jupiter.version>6.1.0</junit.jupiter.version>
<assertj.version>3.27.7</assertj.version>
<okhttp.version>5.4.0</okhttp.version>
<commons.cli.version>1.11.0</commons.cli.version>
<maven-compiler.plugin.version>3.15.0</maven-compiler.plugin.version>
<flatten.plugin.version>1.7.3</flatten.plugin.version>
<jacoco.plugin.version>0.8.15</jacoco.plugin.version>
<maven-source.plugin.version>3.4.0</maven-source.plugin.version>
<maven-javadoc.plugin.version>3.12.0</maven-javadoc.plugin.version>
<maven-shade.plugin.version>3.6.2</maven-shade.plugin.version>
<maven-gpg.plugin.version>3.2.8</maven-gpg.plugin.version>
<maven-surefire.plugin.version>3.5.6</maven-surefire.plugin.version>
<central-publishing.plugin.version>0.11.0</central-publishing.plugin.version>
<checkstyle.plugin.version>3.6.0</checkstyle.plugin.version>
<spotbugs.plugin.version>4.10.2.0</spotbugs.plugin.version>
</properties>
<modules>
<module>opendataloader-pdf-core</module>
<module>opendataloader-pdf-cli</module>
</modules>
<dependencyManagement>
<dependencies>
<!--
okhttp BOM keeps okhttp-jvm and mockwebserver3 lock-stepped at one
version. Note: okhttp 5's plain `okhttp` artifact is an empty
Kotlin-Multiplatform metadata jar, so modules must still depend on
the `okhttp-jvm` coordinate explicitly (the BOM manages the version,
not the artifact selection).
-->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-bom</artifactId>
<version>${okhttp.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.verapdf</groupId>
<artifactId>wcag-algorithms</artifactId>
<version>${verapdf.wcag.algs.version}</version>
<exclusions>
<exclusion>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.databind.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>${commons.cli.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>vera-dev</id>
<name>Vera development</name>
<url>https://artifactory.openpreservation.org/artifactory/vera-dev</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>vera-dev</id>
<name>Vera development</name>
<url>https://artifactory.openpreservation.org/artifactory/vera-dev</url>
</pluginRepository>
</pluginRepositories>
<build>
<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-compiler-plugin</artifactId>
<version>${maven-compiler.plugin.version}</version>
<configuration>
<release>${maven.compiler.source}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc.plugin.version}</version>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven-shade.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.plugin.version}</version>
<configuration>
<configLocation>${project.basedir}/../checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs.plugin.version}</version>
<configuration>
<effort>Max</effort>
<threshold>Medium</threshold>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>license-header</id>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>${project.basedir}/../LICENSE_TEMPLATE/license.txt</header>
<includes>
<include>**/*.java</include>
<include>pom.xml</include>
</includes>
</configuration>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>