Repository: metamodel Updated Branches: refs/heads/master 6cf39add2 -> bbc460f75
Fixed current build issues with missing license headers & banned deps Project: http://git-wip-us.apache.org/repos/asf/metamodel/repo Commit: http://git-wip-us.apache.org/repos/asf/metamodel/commit/bbc460f7 Tree: http://git-wip-us.apache.org/repos/asf/metamodel/tree/bbc460f7 Diff: http://git-wip-us.apache.org/repos/asf/metamodel/diff/bbc460f7 Branch: refs/heads/master Commit: bbc460f75e353674fd4e7f0bbd2c4b927d67092a Parents: 6cf39ad Author: Kasper Sørensen <[email protected]> Authored: Thu Jun 11 23:17:09 2015 +0200 Committer: Kasper Sørensen <[email protected]> Committed: Thu Jun 11 23:17:09 2015 +0200 ---------------------------------------------------------------------- hadoop/pom.xml | 8 ++++++++ .../org/apache/metamodel/util/HdfsResource.java | 18 ++++++++++++++++++ .../apache/metamodel/util/HdfsResourceTest.java | 18 ++++++++++++++++++ 3 files changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/metamodel/blob/bbc460f7/hadoop/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop/pom.xml b/hadoop/pom.xml index 9020a76..0b040bd 100644 --- a/hadoop/pom.xml +++ b/hadoop/pom.xml @@ -119,6 +119,14 @@ <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-jaxrs</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-xc</artifactId> + </exclusion> </exclusions> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/metamodel/blob/bbc460f7/hadoop/src/main/java/org/apache/metamodel/util/HdfsResource.java ---------------------------------------------------------------------- diff --git a/hadoop/src/main/java/org/apache/metamodel/util/HdfsResource.java b/hadoop/src/main/java/org/apache/metamodel/util/HdfsResource.java index 740b5ee..fcc5cc4 100644 --- a/hadoop/src/main/java/org/apache/metamodel/util/HdfsResource.java +++ b/hadoop/src/main/java/org/apache/metamodel/util/HdfsResource.java @@ -1,3 +1,21 @@ +/** + * 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.metamodel.util; import java.io.Closeable; http://git-wip-us.apache.org/repos/asf/metamodel/blob/bbc460f7/hadoop/src/test/java/org/apache/metamodel/util/HdfsResourceTest.java ---------------------------------------------------------------------- diff --git a/hadoop/src/test/java/org/apache/metamodel/util/HdfsResourceTest.java b/hadoop/src/test/java/org/apache/metamodel/util/HdfsResourceTest.java index ebbbc39..7185e51 100644 --- a/hadoop/src/test/java/org/apache/metamodel/util/HdfsResourceTest.java +++ b/hadoop/src/test/java/org/apache/metamodel/util/HdfsResourceTest.java @@ -1,3 +1,21 @@ +/** + * 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.metamodel.util; import junit.framework.TestCase;
