Skip to content

Commit

Permalink
License headers and Apache Rat excludes
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tika/trunk@1694587 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Gagravarr committed Aug 6, 2015
1 parent f32a30f commit 5b386ef
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 1 deletion.
9 changes: 9 additions & 0 deletions tika-app/pom.xml
Expand Up @@ -177,6 +177,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/test/resources/test-data/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
10 changes: 10 additions & 0 deletions tika-java7/pom.xml
Expand Up @@ -60,6 +60,16 @@
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/resources/META-INF/services/java.nio.file.spi.FileTypeDetector</exclude>
<exclude>src/test/resources/test-documents/*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
11 changes: 11 additions & 0 deletions tika-server/pom.xml
Expand Up @@ -255,6 +255,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/resources/tikaserver-version.properties</exclude>
<exclude>src/test/resources/*</exclude>
<exclude>README.md</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>com.qmino</groupId>
<artifactId>miredot-maven-plugin</artifactId>
Expand Down
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.tika.language.translate;

import static org.junit.Assert.assertEquals;
Expand Down
@@ -1,3 +1,19 @@
/**
* 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
*
* 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.
*/
package org.apache.tika.language.translate;

import org.junit.Before;
Expand Down

0 comments on commit 5b386ef

Please sign in to comment.