Spaces:
Sleeping
Sleeping
| <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.pdftag</groupId> | |
| <artifactId>demo</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <name>demo</name> | |
| <!-- FIXME change it to the project's website --> | |
| <url>http://www.example.com</url> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| </properties> | |
| <dependencies> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.11</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>itextpdf</artifactId> | |
| <version>5.5.13.4</version> | |
| <type>pom</type> | |
| </dependency> --> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>itext-core</artifactId> | |
| <version>9.2.0</version> | |
| <type>pom</type> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>kernel</artifactId> | |
| <version>9.2.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>layout</artifactId> | |
| <version>9.2.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>io</artifactId> | |
| <version>9.2.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>bouncy-castle-adapter</artifactId> | |
| <version>9.2.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>pdfua</artifactId> | |
| <version>9.2.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.itextpdf</groupId> | |
| <artifactId>itextpdf</artifactId> | |
| <version>5.5.13.3</version> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <sourceDirectory>embed_metadata/src/main/java</sourceDirectory> | |
| <testSourceDirectory>embed_metadata/src/test/java</testSourceDirectory> | |
| <pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-clean-plugin</artifactId> | |
| <version>3.1.0</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-resources-plugin</artifactId> | |
| <version>3.0.2</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.11.0</version> | |
| <configuration> | |
| <release>11</release> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>2.22.1</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-jar-plugin</artifactId> | |
| <version>3.0.2</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-install-plugin</artifactId> | |
| <version>2.5.2</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-deploy-plugin</artifactId> | |
| <version>2.8.2</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <version>3.7.1</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-project-info-reports-plugin</artifactId> | |
| <version>3.0.0</version> | |
| </plugin> | |
| </plugins> | |
| </pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>3.5.1</version> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>shade</goal> | |
| </goals> | |
| <configuration> | |
| <outputFile>${project.basedir}/pdftagger.jar</outputFile> | |
| <createDependencyReducedPom>false</createDependencyReducedPom> | |
| <transformers> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | |
| <mainClass>com.pdftag.itagpdf</mainClass> | |
| </transformer> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> | |
| </transformers> | |
| <filters> | |
| <filter> | |
| <artifact>*:*</artifact> | |
| <excludes> | |
| <exclude>META-INF/*.SF</exclude> | |
| <exclude>META-INF/*.DSA</exclude> | |
| <exclude>META-INF/*.RSA</exclude> | |
| </excludes> | |
| </filter> | |
| </filters> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> | |