You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2016/07/19 02:43:41 UTC

[1/2] kylin git commit: Fix RAT warnings

Repository: kylin
Updated Branches:
  refs/heads/master 19f9ef070 -> faa952327


Fix RAT warnings

Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/2f1ae8d4
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/2f1ae8d4
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/2f1ae8d4

Branch: refs/heads/master
Commit: 2f1ae8d45593bb940d6ba10af97fdea784f09f4d
Parents: 19f9ef0
Author: shaofengshi <sh...@apache.org>
Authored: Tue Jul 19 09:55:57 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Tue Jul 19 10:43:21 2016 +0800

----------------------------------------------------------------------
 .../org/apache/kylin/dict/CachedTreeMapTest.java   | 17 +++++++++++++++++
 pom.xml                                            |  1 +
 2 files changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/2f1ae8d4/core-dictionary/src/test/java/org/apache/kylin/dict/CachedTreeMapTest.java
----------------------------------------------------------------------
diff --git a/core-dictionary/src/test/java/org/apache/kylin/dict/CachedTreeMapTest.java b/core-dictionary/src/test/java/org/apache/kylin/dict/CachedTreeMapTest.java
index 3366bf6..df64f3f 100644
--- a/core-dictionary/src/test/java/org/apache/kylin/dict/CachedTreeMapTest.java
+++ b/core-dictionary/src/test/java/org/apache/kylin/dict/CachedTreeMapTest.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.kylin.dict;
 
 import org.apache.hadoop.io.Writable;

http://git-wip-us.apache.org/repos/asf/kylin/blob/2f1ae8d4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 806c16b..1d09a90 100644
--- a/pom.xml
+++ b/pom.xml
@@ -789,6 +789,7 @@
                                 <exclude>**/*.iml</exclude>
                                 <exclude>**/.classpath</exclude>
                                 <exclude>**/.project</exclude>
+                                <exclude>**/.settings/**</exclude>
 
                                 <!-- image files constitute images required for documentation. .pptx contain the sources for images -->
                                 <exclude>**/*.png</exclude>


[2/2] kylin git commit: fix RAT warnings

Posted by sh...@apache.org.
fix RAT warnings


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/faa95232
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/faa95232
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/faa95232

Branch: refs/heads/master
Commit: faa95232701390457063d74f00a15b00267d16d9
Parents: 2f1ae8d
Author: shaofengshi <sh...@apache.org>
Authored: Tue Jul 19 02:35:39 2016 +0000
Committer: shaofengshi <sh...@apache.org>
Committed: Tue Jul 19 10:43:29 2016 +0800

----------------------------------------------------------------------
 .../metadata/measure/TopNMeasureTypeTest.java     | 17 +++++++++++++++++
 .../org/apache/kylin/job/SchedulerFactory.java    | 17 +++++++++++++++++
 .../kylin/rest/request/HiveTableRequest.java      | 17 +++++++++++++++++
 .../apache/kylin/tool/JobInstanceExtractor.java   | 18 ++++++++++++++++++
 4 files changed, 69 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/faa95232/core-cube/src/test/java/org/apache/kylin/metadata/measure/TopNMeasureTypeTest.java
----------------------------------------------------------------------
diff --git a/core-cube/src/test/java/org/apache/kylin/metadata/measure/TopNMeasureTypeTest.java b/core-cube/src/test/java/org/apache/kylin/metadata/measure/TopNMeasureTypeTest.java
index d8708d1..593eb6e 100644
--- a/core-cube/src/test/java/org/apache/kylin/metadata/measure/TopNMeasureTypeTest.java
+++ b/core-cube/src/test/java/org/apache/kylin/metadata/measure/TopNMeasureTypeTest.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.kylin.metadata.measure;
 
 import static org.junit.Assert.assertTrue;

http://git-wip-us.apache.org/repos/asf/kylin/blob/faa95232/core-job/src/main/java/org/apache/kylin/job/SchedulerFactory.java
----------------------------------------------------------------------
diff --git a/core-job/src/main/java/org/apache/kylin/job/SchedulerFactory.java b/core-job/src/main/java/org/apache/kylin/job/SchedulerFactory.java
index 9504681..4eb76d1 100644
--- a/core-job/src/main/java/org/apache/kylin/job/SchedulerFactory.java
+++ b/core-job/src/main/java/org/apache/kylin/job/SchedulerFactory.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.kylin.job;
 
 import java.util.Map;

http://git-wip-us.apache.org/repos/asf/kylin/blob/faa95232/server-base/src/main/java/org/apache/kylin/rest/request/HiveTableRequest.java
----------------------------------------------------------------------
diff --git a/server-base/src/main/java/org/apache/kylin/rest/request/HiveTableRequest.java b/server-base/src/main/java/org/apache/kylin/rest/request/HiveTableRequest.java
index c529360..e42c668 100644
--- a/server-base/src/main/java/org/apache/kylin/rest/request/HiveTableRequest.java
+++ b/server-base/src/main/java/org/apache/kylin/rest/request/HiveTableRequest.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.kylin.rest.request;
 
 /**

http://git-wip-us.apache.org/repos/asf/kylin/blob/faa95232/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java
----------------------------------------------------------------------
diff --git a/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java b/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java
index 5ad4953..d71494d 100644
--- a/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java
+++ b/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.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.kylin.tool;
 
 import java.io.File;