Merge pull request #15545 from rmuir/rat
add gradle licenseHeaders to precommit
This commit is contained in:
commit
7e53076112
|
@ -128,10 +128,11 @@ subprojects {
|
||||||
// Only if your buildscript and Ant's optional task need the same library would you have to define it twice.
|
// Only if your buildscript and Ant's optional task need the same library would you have to define it twice.
|
||||||
// https://docs.gradle.org/current/userguide/organizing_build_logic.html
|
// https://docs.gradle.org/current/userguide/organizing_build_logic.html
|
||||||
configurations {
|
configurations {
|
||||||
forbiddenApis
|
buildTools
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
forbiddenApis 'de.thetaphi:forbiddenapis:2.0'
|
buildTools 'de.thetaphi:forbiddenapis:2.0'
|
||||||
|
buildTools 'org.apache.rat:apache-rat:0.11'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,159 @@
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.elasticsearch.gradle.precommit
|
||||||
|
|
||||||
|
import java.nio.file.Files
|
||||||
|
|
||||||
|
import org.gradle.api.DefaultTask
|
||||||
|
import org.gradle.api.tasks.SourceSet
|
||||||
|
import org.gradle.api.tasks.TaskAction
|
||||||
|
|
||||||
|
import groovy.xml.NamespaceBuilder
|
||||||
|
import groovy.xml.NamespaceBuilderSupport
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks files for license headers.
|
||||||
|
* <p>
|
||||||
|
* This is a port of the apache lucene check
|
||||||
|
*/
|
||||||
|
public class LicenseHeadersTask extends DefaultTask {
|
||||||
|
|
||||||
|
LicenseHeadersTask() {
|
||||||
|
description = "Checks sources for missing, incorrect, or unacceptable license headers"
|
||||||
|
}
|
||||||
|
|
||||||
|
@TaskAction
|
||||||
|
public void check() {
|
||||||
|
// load rat tasks
|
||||||
|
AntBuilder ant = new AntBuilder()
|
||||||
|
ant.typedef(resource: "org/apache/rat/anttasks/antlib.xml",
|
||||||
|
uri: "antlib:org.apache.rat.anttasks",
|
||||||
|
classpath: project.configurations.buildTools.asPath)
|
||||||
|
NamespaceBuilderSupport rat = NamespaceBuilder.newInstance(ant, "antlib:org.apache.rat.anttasks")
|
||||||
|
|
||||||
|
// create a file for the log to go to under reports/
|
||||||
|
File reportDir = new File(project.buildDir, "reports/licenseHeaders")
|
||||||
|
reportDir.mkdirs()
|
||||||
|
File reportFile = new File(reportDir, "rat.log")
|
||||||
|
Files.deleteIfExists(reportFile.toPath())
|
||||||
|
|
||||||
|
// run rat, going to the file
|
||||||
|
rat.report(reportFile: reportFile.absolutePath, addDefaultLicenseMatchers: true) {
|
||||||
|
// checks all the java sources (allJava)
|
||||||
|
for (SourceSet set : project.sourceSets) {
|
||||||
|
for (File dir : set.allJava.srcDirs) {
|
||||||
|
// sometimes these dirs don't exist, e.g. site-plugin has no actual java src/main...
|
||||||
|
if (dir.exists()) {
|
||||||
|
ant.fileset(dir: dir)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// BSD 4-clause stuff (is disallowed below)
|
||||||
|
substringMatcher(licenseFamilyCategory: "BSD4 ",
|
||||||
|
licenseFamilyName: "Original BSD License (with advertising clause)") {
|
||||||
|
pattern(substring: "All advertising materials")
|
||||||
|
}
|
||||||
|
|
||||||
|
// BSD-like stuff
|
||||||
|
substringMatcher(licenseFamilyCategory: "BSD ",
|
||||||
|
licenseFamilyName: "Modified BSD License") {
|
||||||
|
// brics automaton
|
||||||
|
pattern(substring: "Copyright (c) 2001-2009 Anders Moeller")
|
||||||
|
// snowball
|
||||||
|
pattern(substring: "Copyright (c) 2001, Dr Martin Porter")
|
||||||
|
// UMASS kstem
|
||||||
|
pattern(substring: "THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER CONTRIBUTORS")
|
||||||
|
// Egothor
|
||||||
|
pattern(substring: "Egothor Software License version 1.00")
|
||||||
|
// JaSpell
|
||||||
|
pattern(substring: "Copyright (c) 2005 Bruno Martins")
|
||||||
|
// d3.js
|
||||||
|
pattern(substring: "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS")
|
||||||
|
// highlight.js
|
||||||
|
pattern(substring: "THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS")
|
||||||
|
}
|
||||||
|
|
||||||
|
// MIT-like
|
||||||
|
substringMatcher(licenseFamilyCategory: "MIT ",
|
||||||
|
licenseFamilyName: "The MIT License") {
|
||||||
|
// ICU license
|
||||||
|
pattern(substring: "Permission is hereby granted, free of charge, to any person obtaining a copy")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Apache
|
||||||
|
substringMatcher(licenseFamilyCategory: "AL ",
|
||||||
|
licenseFamilyName: "Apache") {
|
||||||
|
// Apache license (ES)
|
||||||
|
pattern(substring: "Licensed to Elasticsearch under one or more contributor")
|
||||||
|
// Apache license (ASF)
|
||||||
|
pattern(substring: "Licensed to the Apache Software Foundation (ASF) under")
|
||||||
|
// this is the old-school one under some files
|
||||||
|
pattern(substring: "Licensed under the Apache License, Version 2.0 (the \"License\")")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generated resources
|
||||||
|
substringMatcher(licenseFamilyCategory: "GEN ",
|
||||||
|
licenseFamilyName: "Generated") {
|
||||||
|
// svg files generated by gnuplot
|
||||||
|
pattern(substring: "Produced by GNUPLOT")
|
||||||
|
// snowball stemmers generated by snowball compiler
|
||||||
|
pattern(substring: "This file was generated automatically by the Snowball to Java compiler")
|
||||||
|
// uima tests generated by JCasGen
|
||||||
|
pattern(substring: "First created by JCasGen")
|
||||||
|
// parsers generated by antlr
|
||||||
|
pattern(substring: "ANTLR GENERATED CODE")
|
||||||
|
}
|
||||||
|
|
||||||
|
// approved categories
|
||||||
|
approvedLicense(familyName: "Apache")
|
||||||
|
approvedLicense(familyName: "The MIT License")
|
||||||
|
approvedLicense(familyName: "Modified BSD License")
|
||||||
|
approvedLicense(familyName: "Generated")
|
||||||
|
}
|
||||||
|
|
||||||
|
// check the license file for any errors, this should be fast.
|
||||||
|
boolean zeroUnknownLicenses = false
|
||||||
|
boolean foundProblemsWithFiles = false
|
||||||
|
reportFile.eachLine('UTF-8') { line ->
|
||||||
|
if (line.startsWith("0 Unknown Licenses")) {
|
||||||
|
zeroUnknownLicenses = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (line.startsWith(" !")) {
|
||||||
|
foundProblemsWithFiles = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (zeroUnknownLicenses == false || foundProblemsWithFiles) {
|
||||||
|
// print the unapproved license section, usually its all you need to fix problems.
|
||||||
|
int sectionNumber = 0
|
||||||
|
reportFile.eachLine('UTF-8') { line ->
|
||||||
|
if (line.startsWith("*******************************")) {
|
||||||
|
sectionNumber++
|
||||||
|
} else {
|
||||||
|
if (sectionNumber == 2) {
|
||||||
|
logger.error(line)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalStateException("License header problems were found! Full details: " + reportFile.absolutePath)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -34,6 +34,7 @@ class PrecommitTasks {
|
||||||
List<Task> precommitTasks = [
|
List<Task> precommitTasks = [
|
||||||
configureForbiddenApis(project),
|
configureForbiddenApis(project),
|
||||||
project.tasks.create('forbiddenPatterns', ForbiddenPatternsTask.class),
|
project.tasks.create('forbiddenPatterns', ForbiddenPatternsTask.class),
|
||||||
|
project.tasks.create('licenseHeaders', LicenseHeadersTask.class),
|
||||||
project.tasks.create('jarHell', JarHellTask.class),
|
project.tasks.create('jarHell', JarHellTask.class),
|
||||||
project.tasks.create('thirdPartyAudit', ThirdPartyAuditTask.class)]
|
project.tasks.create('thirdPartyAudit', ThirdPartyAuditTask.class)]
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ public class ThirdPartyAuditTask extends DefaultTask {
|
||||||
|
|
||||||
ant.taskdef(name: "thirdPartyAudit",
|
ant.taskdef(name: "thirdPartyAudit",
|
||||||
classname: "de.thetaphi.forbiddenapis.ant.AntTask",
|
classname: "de.thetaphi.forbiddenapis.ant.AntTask",
|
||||||
classpath: project.configurations.forbiddenApis.asPath)
|
classpath: project.configurations.buildTools.asPath)
|
||||||
|
|
||||||
// print which jars we are going to scan, always
|
// print which jars we are going to scan, always
|
||||||
// this is not the time to try to be succinct! Forbidden will print plenty on its own!
|
// this is not the time to try to be succinct! Forbidden will print plenty on its own!
|
||||||
|
|
|
@ -1,5 +1,27 @@
|
||||||
package org.elasticsearch.http.netty.pipelining;
|
package org.elasticsearch.http.netty.pipelining;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// this file is from netty-http-pipelining, under apache 2.0 license
|
||||||
|
// see github.com/typesafehub/netty-http-pipelining
|
||||||
|
|
||||||
import org.elasticsearch.common.logging.ESLogger;
|
import org.elasticsearch.common.logging.ESLogger;
|
||||||
import org.elasticsearch.common.logging.ESLoggerFactory;
|
import org.elasticsearch.common.logging.ESLoggerFactory;
|
||||||
import org.jboss.netty.channel.*;
|
import org.jboss.netty.channel.*;
|
||||||
|
|
|
@ -1,5 +1,27 @@
|
||||||
package org.elasticsearch.http.netty.pipelining;
|
package org.elasticsearch.http.netty.pipelining;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// this file is from netty-http-pipelining, under apache 2.0 license
|
||||||
|
// see github.com/typesafehub/netty-http-pipelining
|
||||||
|
|
||||||
import org.jboss.netty.channel.*;
|
import org.jboss.netty.channel.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,27 @@
|
||||||
package org.elasticsearch.http.netty.pipelining;
|
package org.elasticsearch.http.netty.pipelining;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// this file is from netty-http-pipelining, under apache 2.0 license
|
||||||
|
// see github.com/typesafehub/netty-http-pipelining
|
||||||
|
|
||||||
import org.jboss.netty.channel.Channel;
|
import org.jboss.netty.channel.Channel;
|
||||||
import org.jboss.netty.channel.UpstreamMessageEvent;
|
import org.jboss.netty.channel.UpstreamMessageEvent;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.search.profile;
|
package org.elasticsearch.search.profile;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import org.elasticsearch.common.io.stream.StreamInput;
|
import org.elasticsearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.common.io.stream.StreamOutput;
|
import org.elasticsearch.common.io.stream.StreamOutput;
|
||||||
import org.elasticsearch.common.io.stream.Writeable;
|
import org.elasticsearch.common.io.stream.Writeable;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.action.support.master;
|
package org.elasticsearch.action.support.master;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import org.elasticsearch.action.index.IndexResponse;
|
import org.elasticsearch.action.index.IndexResponse;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.cluster.routing;
|
package org.elasticsearch.cluster.routing;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import org.elasticsearch.cluster.ClusterState;
|
import org.elasticsearch.cluster.ClusterState;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.gateway.GatewayAllocator;
|
import org.elasticsearch.gateway.GatewayAllocator;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.cluster.routing.allocation;
|
package org.elasticsearch.cluster.routing.allocation;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import org.elasticsearch.Version;
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.cluster.ClusterState;
|
import org.elasticsearch.cluster.ClusterState;
|
||||||
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.mapper.attachments;
|
package org.elasticsearch.mapper.attachments;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import org.elasticsearch.test.ESTestCase;
|
import org.elasticsearch.test.ESTestCase;
|
||||||
|
|
||||||
public class TikaImplTests extends ESTestCase {
|
public class TikaImplTests extends ESTestCase {
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.plugin.hadoop.hdfs;
|
package org.elasticsearch.plugin.hadoop.hdfs;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.security.AccessControlContext;
|
import java.security.AccessControlContext;
|
||||||
import java.security.AccessController;
|
import java.security.AccessController;
|
||||||
|
@ -81,4 +100,4 @@ public abstract class Utils {
|
||||||
|
|
||||||
return base;
|
return base;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.plugin.hadoop.hdfs;
|
package org.elasticsearch.plugin.hadoop.hdfs;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.plugin.hadoop.hdfs;
|
package org.elasticsearch.plugin.hadoop.hdfs;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
package org.elasticsearch.plugin.hadoop.hdfs;
|
package org.elasticsearch.plugin.hadoop.hdfs;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch 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.
|
||||||
|
*/
|
||||||
|
|
||||||
import org.elasticsearch.test.ESTestCase;
|
import org.elasticsearch.test.ESTestCase;
|
||||||
|
|
||||||
public class UtilsTests extends ESTestCase {
|
public class UtilsTests extends ESTestCase {
|
||||||
|
|
Loading…
Reference in New Issue