forked from apache/tika
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added license header to tika-batch/pom.xml Fixed indents, trailing spaces and reordered tags. git-svn-id: https://svn.apache.org/repos/asf/tika/trunk@1684935 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
7 changed files
with
326 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,172 +1,188 @@ | ||
<?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/xsd/maven-4.0.0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<properties> | ||
<cli.version>1.2</cli.version> <!--sync version with tika-server or move to parent? --> | ||
<compress.version>1.9</compress.version> <!-- sync with tika-parsers or move to parent? --> | ||
|
||
</properties> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you 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 | ||
<parent> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-parent</artifactId> | ||
<version>1.10-SNAPSHOT</version> | ||
<relativePath>../tika-parent/pom.xml</relativePath> | ||
</parent> | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
<artifactId>tika-batch</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>Apache Tika batch</name> | ||
<url>http://tika.apache.org/</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>tika-core</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>tika-serialization</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
<version>${compress.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-cli</groupId> | ||
<artifactId>commons-cli</artifactId> | ||
<version>${cli.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-core</artifactId> | ||
<version>${project.version}</version> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-parsers</artifactId> | ||
<version>${project.version}</version> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<scope>test</scope> | ||
<version>2.1</version> | ||
</dependency> | ||
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> | ||
|
||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<version>1.5</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>bundle</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<includes> | ||
<include>**/*.xml</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
<parent> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-parent</artifactId> | ||
<version>1.10-SNAPSHOT</version> | ||
<relativePath>../tika-parent/pom.xml</relativePath> | ||
</parent> | ||
|
||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-DocURL>${project.url}</Bundle-DocURL> | ||
<Bundle-Activator> | ||
org.apache.tika.config.TikaActivator | ||
</Bundle-Activator> | ||
<Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.rat</groupId> | ||
<artifactId>apache-rat-plugin</artifactId> | ||
<configuration> | ||
<excludes> | ||
<exclude>src/test/resources/org/apache/tika/**</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-failsafe-plugin</artifactId> | ||
<version>2.10</version> | ||
<configuration> | ||
<additionalClasspathElements> | ||
<additionalClasspathElement> | ||
${project.build.directory}/${project.build.finalName}.jar | ||
</additionalClasspathElement> | ||
</additionalClasspathElements> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>integration-test</goal> | ||
<goal>verify</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<artifactId>tika-batch</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>Apache Tika batch</name> | ||
<url>http://tika.apache.org/</url> | ||
|
||
<properties> | ||
<cli.version>1.2</cli.version> | ||
<!-- sync version with tika-server or move to parent? --> | ||
<compress.version>1.9</compress.version> | ||
<!-- sync with tika-parsers or move to parent? --> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>tika-core</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>tika-serialization</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
<version>${compress.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-cli</groupId> | ||
<artifactId>commons-cli</artifactId> | ||
<version>${cli.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-core</artifactId> | ||
<version>${project.version}</version> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-parsers</artifactId> | ||
<version>${project.version}</version> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<scope>test</scope> | ||
<version>2.1</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<organization> | ||
<name>The Apache Software Foundation</name> | ||
<url>http://www.apache.org</url> | ||
</organization> | ||
<scm> | ||
<url>http://svn.apache.org/viewvc/tika/trunk/tika-batch</url> | ||
<connection>scm:svn:http://svn.apache.org/repos/asf/tika/trunk/tika-batch</connection> | ||
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/tika/trunk/tika-batch</developerConnection> | ||
</scm> | ||
<issueManagement> | ||
<system>JIRA</system> | ||
<url>https://issues.apache.org/jira/browse/TIKA</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>Jenkins</system> | ||
<url>https://builds.apache.org/job/Tika-trunk/</url> | ||
</ciManagement> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<version>1.5</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>bundle</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<includes> | ||
<include>**/*.xml</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-DocURL>${project.url}</Bundle-DocURL> | ||
<Bundle-Activator> | ||
org.apache.tika.config.TikaActivator | ||
</Bundle-Activator> | ||
<Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.rat</groupId> | ||
<artifactId>apache-rat-plugin</artifactId> | ||
<configuration> | ||
<excludes> | ||
<exclude>src/test/resources/org/apache/tika/**</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-failsafe-plugin</artifactId> | ||
<version>2.10</version> | ||
<configuration> | ||
<additionalClasspathElements> | ||
<additionalClasspathElement> | ||
${project.build.directory}/${project.build.finalName}.jar | ||
</additionalClasspathElement> | ||
</additionalClasspathElements> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>integration-test</goal> | ||
<goal>verify</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<organization> | ||
<name>The Apache Software Foundation</name> | ||
<url>http://www.apache.org</url> | ||
</organization> | ||
<scm> | ||
<url>http://svn.apache.org/viewvc/tika/trunk/tika-batch</url> | ||
<connection>scm:svn:http://svn.apache.org/repos/asf/tika/trunk/tika-batch</connection> | ||
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/tika/trunk/tika-batch</developerConnection> | ||
</scm> | ||
<issueManagement> | ||
<system>JIRA</system> | ||
<url>https://issues.apache.org/jira/browse/TIKA</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>Jenkins</system> | ||
<url>https://builds.apache.org/job/Tika-trunk/</url> | ||
</ciManagement> | ||
</project> |
Oops, something went wrong.