You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eagle.apache.org by ha...@apache.org on 2016/04/13 06:48:00 UTC

incubator-eagle git commit: EAGLE-248 Rename eagle-devsupport to eagle-dev

Repository: incubator-eagle
Updated Branches:
  refs/heads/master 3b405cbf8 -> 772938ade


EAGLE-248 Rename eagle-devsupport to eagle-dev

https://issues.apache.org/jira/browse/EAGLE-248


Project: http://git-wip-us.apache.org/repos/asf/incubator-eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-eagle/commit/772938ad
Tree: http://git-wip-us.apache.org/repos/asf/incubator-eagle/tree/772938ad
Diff: http://git-wip-us.apache.org/repos/asf/incubator-eagle/diff/772938ad

Branch: refs/heads/master
Commit: 772938ade85474072a27c312efc18315598e3497
Parents: 3b405cb
Author: Hao Chen <ha...@apache.org>
Authored: Wed Apr 13 12:46:19 2016 +0800
Committer: Hao Chen <ha...@apache.org>
Committed: Wed Apr 13 12:47:43 2016 +0800

----------------------------------------------------------------------
 eagle-dev/build.sh                              |  18 +++
 eagle-dev/clean-all-services.sh                 |  21 ++++
 eagle-dev/eclipse-java-templates.xml            |  20 ++++
 eagle-dev/eclipse-scala-templates.xml           | 117 +++++++++++++++++++
 eagle-dev/start-webservice.sh                   |  39 +++++++
 eagle-dev/start-zk-kafka-webservice.sh          |  49 ++++++++
 eagle-dev/start-zk-kafka.sh                     |  37 ++++++
 eagle-dev/stop-all-services.sh                  |  31 +++++
 eagle-devsupport/build.sh                       |  18 ---
 eagle-devsupport/clean-all-services.sh          |  21 ----
 eagle-devsupport/eclipse-java-templates.xml     |  20 ----
 eagle-devsupport/eclipse-scala-templates.xml    | 117 -------------------
 eagle-devsupport/start-webservice.sh            |  39 -------
 eagle-devsupport/start-zk-kafka-webservice.sh   |  49 --------
 eagle-devsupport/start-zk-kafka.sh              |  37 ------
 eagle-devsupport/stop-all-services.sh           |  31 -----
 .../eagle-cassandra-example/README.md           |   2 +-
 17 files changed, 333 insertions(+), 333 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/build.sh
----------------------------------------------------------------------
diff --git a/eagle-dev/build.sh b/eagle-dev/build.sh
new file mode 100755
index 0000000..4e41f3e
--- /dev/null
+++ b/eagle-dev/build.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+# 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.
+
+cd $(dirname $0)/../
+mvn clean install -DskipTests
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/clean-all-services.sh
----------------------------------------------------------------------
diff --git a/eagle-dev/clean-all-services.sh b/eagle-dev/clean-all-services.sh
new file mode 100755
index 0000000..20e2b3f
--- /dev/null
+++ b/eagle-dev/clean-all-services.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+# 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.
+
+echo "Stopping all service ..."
+$(dirname $0)/stop-all-services.sh
+echo "Cleaning tmp files (including local db, zookeeper data, kafka log, etc.) ..."
+rm -rf /tmp/eagle-*
+echo "Done."
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/eclipse-java-templates.xml
----------------------------------------------------------------------
diff --git a/eagle-dev/eclipse-java-templates.xml b/eagle-dev/eclipse-java-templates.xml
new file mode 100644
index 0000000..8ccc558
--- /dev/null
+++ b/eagle-dev/eclipse-java-templates.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="false" context="newtype_context" deleted="false" description="Newly created files" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.newtype" name="newtype">/*
+ * 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_declaration}
+
+${typecomment}
+${type_declaration}</template></templates>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/eclipse-scala-templates.xml
----------------------------------------------------------------------
diff --git a/eagle-dev/eclipse-scala-templates.xml b/eagle-dev/eclipse-scala-templates.xml
new file mode 100644
index 0000000..55ce31a
--- /dev/null
+++ b/eagle-dev/eclipse-scala-templates.xml
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New App template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.app" name="wizard_app">/*
+ * 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_name}
+
+object ${type_name} extends App {
+  ${cursor}
+}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New class template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.class" name="wizard_class">/*
+ * 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_name}
+
+class ${type_name} {
+  ${cursor}
+}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New empty file template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.empty" name="wizard_empty">/*
+ * 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.
+ */
+ </template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New object template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.object" name="wizard_object">/*
+ * 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_name}
+
+object ${type_name} {
+  ${cursor}
+}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New package object template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.packageObject" name="wizard_package_object">/*
+ * 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_name}
+
+package object ${type_name} {
+  ${cursor}
+}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New trait template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.trait" name="wizard_trait">/*
+ * 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_name}
+
+trait ${type_name} {
+  ${cursor}
+}</template></templates>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/start-webservice.sh
----------------------------------------------------------------------
diff --git a/eagle-dev/start-webservice.sh b/eagle-dev/start-webservice.sh
new file mode 100755
index 0000000..fc91f7a
--- /dev/null
+++ b/eagle-dev/start-webservice.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+# 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.
+
+export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
+export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
+
+ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
+if [ "$?" != "0" ];then
+	echo "$EAGLE_BUILD_DIR not exist, build now"
+	cd $EAGLE_BASE_DIR
+	mvn package -DskipTests
+fi
+
+cd $EAGLE_BUILD_DIR/
+
+bin/eagle-service.sh status
+
+if [ "$?" != "0" ];then
+	echo "Starting eagle service ..."
+	bin/eagle-service.sh start
+	sleep 1
+else
+	echo "Eagle service has already started"
+fi
+
+bin/eagle-topology-init.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/start-zk-kafka-webservice.sh
----------------------------------------------------------------------
diff --git a/eagle-dev/start-zk-kafka-webservice.sh b/eagle-dev/start-zk-kafka-webservice.sh
new file mode 100755
index 0000000..61313c0
--- /dev/null
+++ b/eagle-dev/start-zk-kafka-webservice.sh
@@ -0,0 +1,49 @@
+#!/bin/bash
+# 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.
+
+export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
+export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
+
+ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
+if [ "$?" != "0" ];then
+	echo "$EAGLE_BUILD_DIR not exist, build now"
+	cd $EAGLE_BASE_DIR
+	mvn package -DskipTests
+fi
+
+cd $EAGLE_BUILD_DIR/
+
+bin/eagle-service.sh status
+
+if [ "$?" != "0" ];then
+	echo "Starting eagle service ..."
+	bin/eagle-service.sh start
+	sleep 1
+else
+	echo "Eagle service has already started"
+fi
+
+bin/eagle-topology-init.sh
+
+echo "Starting zookeeper"
+bin/zookeeper-server-start.sh -daemon conf/zookeeper-server.properties
+sleep 1
+bin/zookeeper-server-status.sh
+
+echo "Starting kafka"
+bin/kafka-server-start.sh -daemon conf/kafka-server.properties
+sleep 1
+bin/kafka-server-status.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/start-zk-kafka.sh
----------------------------------------------------------------------
diff --git a/eagle-dev/start-zk-kafka.sh b/eagle-dev/start-zk-kafka.sh
new file mode 100755
index 0000000..17d8515
--- /dev/null
+++ b/eagle-dev/start-zk-kafka.sh
@@ -0,0 +1,37 @@
+#!/bin/bash
+# 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.
+
+export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
+export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
+
+ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
+if [ "$?" != "0" ];then
+	echo "$EAGLE_BUILD_DIR not exist, build now"
+	cd $EAGLE_BASE_DIR
+	mvn package -DskipTests
+fi
+
+cd $EAGLE_BUILD_DIR/
+
+echo "Starting zookeeper"
+bin/zookeeper-server-start.sh -daemon conf/zookeeper-server.properties
+sleep 1
+bin/zookeeper-server-status.sh
+
+echo "Starting kafka"
+bin/kafka-server-start.sh -daemon conf/kafka-server.properties
+sleep 1
+bin/kafka-server-status.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-dev/stop-all-services.sh
----------------------------------------------------------------------
diff --git a/eagle-dev/stop-all-services.sh b/eagle-dev/stop-all-services.sh
new file mode 100755
index 0000000..78b776d
--- /dev/null
+++ b/eagle-dev/stop-all-services.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+# 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.
+
+export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/../
+export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
+chmod +x $EAGLE_BASE_DIR/eagle-assembly/src/main/bin/*
+
+echo "Stopping eagle service"
+ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
+if [ "$?" != "0" ];then
+	echo "$EAGLE_BUILD_DIR not exist, do nothing"
+else
+	$EAGLE_BUILD_DIR/bin/eagle-service.sh stop
+fi
+echo "Stopping zookeeper"
+$EAGLE_BASE_DIR/eagle-assembly/src/main/bin/kafka-server-stop.sh
+echo "Stopping kafka"
+$EAGLE_BASE_DIR/eagle-assembly/src/main/bin/zookeeper-server-stop.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/build.sh
----------------------------------------------------------------------
diff --git a/eagle-devsupport/build.sh b/eagle-devsupport/build.sh
deleted file mode 100755
index 4e41f3e..0000000
--- a/eagle-devsupport/build.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-# 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.
-
-cd $(dirname $0)/../
-mvn clean install -DskipTests
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/clean-all-services.sh
----------------------------------------------------------------------
diff --git a/eagle-devsupport/clean-all-services.sh b/eagle-devsupport/clean-all-services.sh
deleted file mode 100755
index 20e2b3f..0000000
--- a/eagle-devsupport/clean-all-services.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-# 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.
-
-echo "Stopping all service ..."
-$(dirname $0)/stop-all-services.sh
-echo "Cleaning tmp files (including local db, zookeeper data, kafka log, etc.) ..."
-rm -rf /tmp/eagle-*
-echo "Done."
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/eclipse-java-templates.xml
----------------------------------------------------------------------
diff --git a/eagle-devsupport/eclipse-java-templates.xml b/eagle-devsupport/eclipse-java-templates.xml
deleted file mode 100644
index 8ccc558..0000000
--- a/eagle-devsupport/eclipse-java-templates.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="false" context="newtype_context" deleted="false" description="Newly created files" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.newtype" name="newtype">/*
- * 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_declaration}
-
-${typecomment}
-${type_declaration}</template></templates>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/eclipse-scala-templates.xml
----------------------------------------------------------------------
diff --git a/eagle-devsupport/eclipse-scala-templates.xml b/eagle-devsupport/eclipse-scala-templates.xml
deleted file mode 100644
index 55ce31a..0000000
--- a/eagle-devsupport/eclipse-scala-templates.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New App template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.app" name="wizard_app">/*
- * 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_name}
-
-object ${type_name} extends App {
-  ${cursor}
-}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New class template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.class" name="wizard_class">/*
- * 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_name}
-
-class ${type_name} {
-  ${cursor}
-}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New empty file template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.empty" name="wizard_empty">/*
- * 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.
- */
- </template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New object template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.object" name="wizard_object">/*
- * 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_name}
-
-object ${type_name} {
-  ${cursor}
-}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New package object template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.packageObject" name="wizard_package_object">/*
- * 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_name}
-
-package object ${type_name} {
-  ${cursor}
-}</template><template autoinsert="true" context="org.scala-ide.sdt.core.templates" deleted="false" description="New trait template for the new file wizard" enabled="true" id="org.scalaide.core.templates.wizards.trait" name="wizard_trait">/*
- * 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_name}
-
-trait ${type_name} {
-  ${cursor}
-}</template></templates>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/start-webservice.sh
----------------------------------------------------------------------
diff --git a/eagle-devsupport/start-webservice.sh b/eagle-devsupport/start-webservice.sh
deleted file mode 100755
index fc91f7a..0000000
--- a/eagle-devsupport/start-webservice.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-# 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.
-
-export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
-export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
-
-ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
-if [ "$?" != "0" ];then
-	echo "$EAGLE_BUILD_DIR not exist, build now"
-	cd $EAGLE_BASE_DIR
-	mvn package -DskipTests
-fi
-
-cd $EAGLE_BUILD_DIR/
-
-bin/eagle-service.sh status
-
-if [ "$?" != "0" ];then
-	echo "Starting eagle service ..."
-	bin/eagle-service.sh start
-	sleep 1
-else
-	echo "Eagle service has already started"
-fi
-
-bin/eagle-topology-init.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/start-zk-kafka-webservice.sh
----------------------------------------------------------------------
diff --git a/eagle-devsupport/start-zk-kafka-webservice.sh b/eagle-devsupport/start-zk-kafka-webservice.sh
deleted file mode 100755
index 61313c0..0000000
--- a/eagle-devsupport/start-zk-kafka-webservice.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-# 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.
-
-export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
-export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
-
-ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
-if [ "$?" != "0" ];then
-	echo "$EAGLE_BUILD_DIR not exist, build now"
-	cd $EAGLE_BASE_DIR
-	mvn package -DskipTests
-fi
-
-cd $EAGLE_BUILD_DIR/
-
-bin/eagle-service.sh status
-
-if [ "$?" != "0" ];then
-	echo "Starting eagle service ..."
-	bin/eagle-service.sh start
-	sleep 1
-else
-	echo "Eagle service has already started"
-fi
-
-bin/eagle-topology-init.sh
-
-echo "Starting zookeeper"
-bin/zookeeper-server-start.sh -daemon conf/zookeeper-server.properties
-sleep 1
-bin/zookeeper-server-status.sh
-
-echo "Starting kafka"
-bin/kafka-server-start.sh -daemon conf/kafka-server.properties
-sleep 1
-bin/kafka-server-status.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/start-zk-kafka.sh
----------------------------------------------------------------------
diff --git a/eagle-devsupport/start-zk-kafka.sh b/eagle-devsupport/start-zk-kafka.sh
deleted file mode 100755
index 17d8515..0000000
--- a/eagle-devsupport/start-zk-kafka.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-# 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.
-
-export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
-export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
-
-ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
-if [ "$?" != "0" ];then
-	echo "$EAGLE_BUILD_DIR not exist, build now"
-	cd $EAGLE_BASE_DIR
-	mvn package -DskipTests
-fi
-
-cd $EAGLE_BUILD_DIR/
-
-echo "Starting zookeeper"
-bin/zookeeper-server-start.sh -daemon conf/zookeeper-server.properties
-sleep 1
-bin/zookeeper-server-status.sh
-
-echo "Starting kafka"
-bin/kafka-server-start.sh -daemon conf/kafka-server.properties
-sleep 1
-bin/kafka-server-status.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-devsupport/stop-all-services.sh
----------------------------------------------------------------------
diff --git a/eagle-devsupport/stop-all-services.sh b/eagle-devsupport/stop-all-services.sh
deleted file mode 100755
index 78b776d..0000000
--- a/eagle-devsupport/stop-all-services.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-# 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.
-
-export EAGLE_BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/../
-export EAGLE_BUILD_DIR=${EAGLE_BASE_DIR}/eagle-assembly/target/eagle-*-bin/eagle-*/
-chmod +x $EAGLE_BASE_DIR/eagle-assembly/src/main/bin/*
-
-echo "Stopping eagle service"
-ls ${EAGLE_BUILD_DIR} 1>/dev/null 2>/dev/null
-if [ "$?" != "0" ];then
-	echo "$EAGLE_BUILD_DIR not exist, do nothing"
-else
-	$EAGLE_BUILD_DIR/bin/eagle-service.sh stop
-fi
-echo "Stopping zookeeper"
-$EAGLE_BASE_DIR/eagle-assembly/src/main/bin/kafka-server-stop.sh
-echo "Stopping kafka"
-$EAGLE_BASE_DIR/eagle-assembly/src/main/bin/zookeeper-server-stop.sh
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/772938ad/eagle-examples/eagle-cassandra-example/README.md
----------------------------------------------------------------------
diff --git a/eagle-examples/eagle-cassandra-example/README.md b/eagle-examples/eagle-cassandra-example/README.md
index 15bf757..041e519 100644
--- a/eagle-examples/eagle-cassandra-example/README.md
+++ b/eagle-examples/eagle-cassandra-example/README.md
@@ -40,4 +40,4 @@ FAQ
 
 > storm.kafka.FailedFetchException: Error fetching data from [Partition{host=localhost:6667, partition=2}] for topic [cassandra_querylog_local]: [UNKNOWN_TOPIC_OR_PARTITION]
      
-__Solution__: Execute `eagle-devsupport/clean-all.sh` and retry from first step.
\ No newline at end of file
+__Solution__: Execute `eagle-dev/clean-all.sh` and retry from first step.