Repository: incubator-ratis Updated Branches: refs/heads/master be4c414e0 -> 7a5c3ea12
RATIS-118. Add missing license headers for the ServerInformation feature. Project: http://git-wip-us.apache.org/repos/asf/incubator-ratis/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ratis/commit/7a5c3ea1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ratis/tree/7a5c3ea1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ratis/diff/7a5c3ea1 Branch: refs/heads/master Commit: 7a5c3ea12a84a99bd78bd22e869e5b2a938693e7 Parents: be4c414 Author: Tsz-Wo Nicholas Sze <[email protected]> Authored: Thu Sep 28 16:00:06 2017 +0800 Committer: Tsz-Wo Nicholas Sze <[email protected]> Committed: Thu Sep 28 16:00:06 2017 +0800 ---------------------------------------------------------------------- .../ratis/protocol/ServerInformationReply.java | 17 +++++++++++++++++ .../ratis/protocol/ServerInformatonRequest.java | 17 +++++++++++++++++ ratis-hadoop-shaded/pom.xml | 17 +++++++++++++++++ .../TestServerInformationWithHadoopRpc.java | 17 +++++++++++++++++ .../netty/TestServerInformationWithNetty.java | 17 +++++++++++++++++ 5 files changed, 85 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/7a5c3ea1/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformationReply.java ---------------------------------------------------------------------- diff --git a/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformationReply.java b/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformationReply.java index a01afe2..d4257e1 100644 --- a/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformationReply.java +++ b/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformationReply.java @@ -1,3 +1,20 @@ +/** + * 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.ratis.protocol; /** http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/7a5c3ea1/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformatonRequest.java ---------------------------------------------------------------------- diff --git a/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformatonRequest.java b/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformatonRequest.java index b4792b2..c2b7eb5 100644 --- a/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformatonRequest.java +++ b/ratis-common/src/main/java/org/apache/ratis/protocol/ServerInformatonRequest.java @@ -1,3 +1,20 @@ +/** + * 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.ratis.protocol; /** http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/7a5c3ea1/ratis-hadoop-shaded/pom.xml ---------------------------------------------------------------------- diff --git a/ratis-hadoop-shaded/pom.xml b/ratis-hadoop-shaded/pom.xml index 98016fa..cc47466 100644 --- a/ratis-hadoop-shaded/pom.xml +++ b/ratis-hadoop-shaded/pom.xml @@ -59,6 +59,23 @@ <skipAssembly>true</skipAssembly> </configuration> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>${shaded.sources.dir}/</exclude> + </excludes> + </configuration> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/7a5c3ea1/ratis-hadoop/src/test/java/org/apache/ratis/hadooprpc/TestServerInformationWithHadoopRpc.java ---------------------------------------------------------------------- diff --git a/ratis-hadoop/src/test/java/org/apache/ratis/hadooprpc/TestServerInformationWithHadoopRpc.java b/ratis-hadoop/src/test/java/org/apache/ratis/hadooprpc/TestServerInformationWithHadoopRpc.java index 4e54426..8de6112 100644 --- a/ratis-hadoop/src/test/java/org/apache/ratis/hadooprpc/TestServerInformationWithHadoopRpc.java +++ b/ratis-hadoop/src/test/java/org/apache/ratis/hadooprpc/TestServerInformationWithHadoopRpc.java @@ -1,3 +1,20 @@ +/** + * 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.ratis.hadooprpc; import org.apache.ratis.server.impl.ServerInformationBaseTest; http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/7a5c3ea1/ratis-netty/src/test/java/org/apache/ratis/netty/TestServerInformationWithNetty.java ---------------------------------------------------------------------- diff --git a/ratis-netty/src/test/java/org/apache/ratis/netty/TestServerInformationWithNetty.java b/ratis-netty/src/test/java/org/apache/ratis/netty/TestServerInformationWithNetty.java index f586af5..d1bcae4 100644 --- a/ratis-netty/src/test/java/org/apache/ratis/netty/TestServerInformationWithNetty.java +++ b/ratis-netty/src/test/java/org/apache/ratis/netty/TestServerInformationWithNetty.java @@ -1,3 +1,20 @@ +/** + * 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.ratis.netty; import org.apache.ratis.server.impl.ServerInformationBaseTest;
