|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Licensed to the Apache Software Foundation (ASF) under one |
| 4 | + or more contributor license agreements. See the NOTICE file |
| 5 | + distributed with this work for additional information |
| 6 | + regarding copyright ownership. The ASF licenses this file |
| 7 | + to you under the Apache License, Version 2.0 (the |
| 8 | + "License"); you may not use this file except in compliance |
| 9 | + with the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, |
| 14 | + software distributed under the License is distributed on an |
| 15 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | + KIND, either express or implied. See the License for the |
| 17 | + specific language governing permissions and limitations |
| 18 | + under the License. |
| 19 | +--> |
| 20 | +<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <parent> |
| 22 | + <groupId>org.apache.tika</groupId> |
| 23 | + <artifactId>tika-pipes</artifactId> |
| 24 | + <version>4.0.0-SNAPSHOT</version> |
| 25 | + <relativePath>../pom.xml</relativePath> |
| 26 | + </parent> |
| 27 | + <modelVersion>4.0.0</modelVersion> |
| 28 | + |
| 29 | + <artifactId>tika-pipes-fork-parser</artifactId> |
| 30 | + |
| 31 | + <name>Apache Tika pipes fork parser</name> |
| 32 | + <description>A ForkParser implementation backed by PipesClient for parsing in forked JVM processes</description> |
| 33 | + <url>https://tika.apache.org/</url> |
| 34 | + |
| 35 | + <dependencies> |
| 36 | + <dependency> |
| 37 | + <groupId>${project.groupId}</groupId> |
| 38 | + <artifactId>tika-core</artifactId> |
| 39 | + <version>${project.version}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>${project.groupId}</groupId> |
| 43 | + <artifactId>tika-pipes-api</artifactId> |
| 44 | + <version>${project.version}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>${project.groupId}</groupId> |
| 48 | + <artifactId>tika-pipes-core</artifactId> |
| 49 | + <version>${project.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>${project.groupId}</groupId> |
| 53 | + <artifactId>tika-pipes-file-system</artifactId> |
| 54 | + <version>${project.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>${project.groupId}</groupId> |
| 58 | + <artifactId>tika-parsers-standard-package</artifactId> |
| 59 | + <version>${project.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>${project.groupId}</groupId> |
| 63 | + <artifactId>tika-core</artifactId> |
| 64 | + <version>${project.version}</version> |
| 65 | + <type>test-jar</type> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>${project.groupId}</groupId> |
| 70 | + <artifactId>tika-pipes-file-system</artifactId> |
| 71 | + <version>${project.version}</version> |
| 72 | + <scope>test</scope> |
| 73 | + <type>zip</type> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.junit.jupiter</groupId> |
| 77 | + <artifactId>junit-jupiter-api</artifactId> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.junit.jupiter</groupId> |
| 82 | + <artifactId>junit-jupiter-engine</artifactId> |
| 83 | + <scope>test</scope> |
| 84 | + </dependency> |
| 85 | + </dependencies> |
| 86 | + <build> |
| 87 | + <plugins> |
| 88 | + <plugin> |
| 89 | + <groupId>org.apache.maven.plugins</groupId> |
| 90 | + <artifactId>maven-jar-plugin</artifactId> |
| 91 | + <configuration> |
| 92 | + <archive> |
| 93 | + <manifestEntries> |
| 94 | + <Automatic-Module-Name>org.apache.tika.pipes.fork</Automatic-Module-Name> |
| 95 | + </manifestEntries> |
| 96 | + </archive> |
| 97 | + </configuration> |
| 98 | + </plugin> |
| 99 | + <plugin> |
| 100 | + <groupId>org.apache.maven.plugins</groupId> |
| 101 | + <artifactId>maven-dependency-plugin</artifactId> |
| 102 | + <executions> |
| 103 | + <execution> |
| 104 | + <id>copy-plugins</id> |
| 105 | + <phase>process-test-resources</phase> |
| 106 | + <goals> |
| 107 | + <goal>copy</goal> |
| 108 | + </goals> |
| 109 | + <configuration> |
| 110 | + <outputDirectory>${project.build.directory}/plugins</outputDirectory> |
| 111 | + <artifactItems> |
| 112 | + <artifactItem> |
| 113 | + <groupId>org.apache.tika</groupId> |
| 114 | + <artifactId>tika-pipes-file-system</artifactId> |
| 115 | + <version>${project.version}</version> |
| 116 | + <type>zip</type> |
| 117 | + <overWrite>true</overWrite> |
| 118 | + </artifactItem> |
| 119 | + </artifactItems> |
| 120 | + </configuration> |
| 121 | + </execution> |
| 122 | + <execution> |
| 123 | + <id>copy-dependencies</id> |
| 124 | + <phase>package</phase> |
| 125 | + <goals> |
| 126 | + <goal>copy-dependencies</goal> |
| 127 | + </goals> |
| 128 | + <configuration> |
| 129 | + <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| 130 | + <includeScope>runtime</includeScope> |
| 131 | + <stripVersion>false</stripVersion> |
| 132 | + <overWriteReleases>false</overWriteReleases> |
| 133 | + <overWriteSnapshots>false</overWriteSnapshots> |
| 134 | + </configuration> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + <plugin> |
| 139 | + <artifactId>maven-assembly-plugin</artifactId> |
| 140 | + <configuration> |
| 141 | + <descriptors> |
| 142 | + <descriptor>src/main/assembly/assembly.xml</descriptor> |
| 143 | + </descriptors> |
| 144 | + <appendAssemblyId>false</appendAssemblyId> |
| 145 | + </configuration> |
| 146 | + <executions> |
| 147 | + <execution> |
| 148 | + <id>make-assembly</id> |
| 149 | + <phase>package</phase> |
| 150 | + <goals> |
| 151 | + <goal>single</goal> |
| 152 | + </goals> |
| 153 | + </execution> |
| 154 | + </executions> |
| 155 | + </plugin> |
| 156 | + </plugins> |
| 157 | + </build> |
| 158 | +</project> |
0 commit comments