You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@twill.apache.org by ch...@apache.org on 2014/04/22 08:06:44 UTC

[47/50] [abbrv] git commit: Added "Apache" to maven submodules names.

Added "Apache" to maven submodules names.


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

Branch: refs/heads/site
Commit: d6504ebeb84a596a10655d7176ebf4d4de5fa319
Parents: a028289
Author: Terence Yim <ch...@apache.org>
Authored: Tue Apr 15 00:06:50 2014 -0700
Committer: Terence Yim <ch...@apache.org>
Committed: Tue Apr 15 00:09:38 2014 -0700

----------------------------------------------------------------------
 twill-api/pom.xml            | 2 +-
 twill-common/pom.xml         | 2 +-
 twill-core/pom.xml           | 2 +-
 twill-discovery-api/pom.xml  | 2 +-
 twill-discovery-core/pom.xml | 2 +-
 twill-examples/echo/pom.xml  | 6 +++---
 twill-examples/pom.xml       | 6 +++---
 twill-examples/yarn/pom.xml  | 6 +++---
 twill-ext/pom.xml            | 4 ++--
 twill-yarn/pom.xml           | 2 +-
 twill-zookeeper/pom.xml      | 2 +-
 11 files changed, 18 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-api/pom.xml
----------------------------------------------------------------------
diff --git a/twill-api/pom.xml b/twill-api/pom.xml
index 250289c..570d864 100644
--- a/twill-api/pom.xml
+++ b/twill-api/pom.xml
@@ -29,7 +29,7 @@
 
     <artifactId>twill-api</artifactId>
     <packaging>jar</packaging>
-    <name>Twill API</name>
+    <name>Apache Twill API</name>
 
     <dependencies>
         <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-common/pom.xml
----------------------------------------------------------------------
diff --git a/twill-common/pom.xml b/twill-common/pom.xml
index e9e641f..e33e002 100644
--- a/twill-common/pom.xml
+++ b/twill-common/pom.xml
@@ -27,7 +27,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>twill-common</artifactId>
-    <name>Twill common library</name>
+    <name>Apache Twill common library</name>
 
     <dependencies>
         <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-core/pom.xml
----------------------------------------------------------------------
diff --git a/twill-core/pom.xml b/twill-core/pom.xml
index 7b7a085..2ff3aa9 100644
--- a/twill-core/pom.xml
+++ b/twill-core/pom.xml
@@ -27,7 +27,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>twill-core</artifactId>
-    <name>Twill core library</name>
+    <name>Apache Twill core library</name>
 
     <dependencies>
         <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-discovery-api/pom.xml
----------------------------------------------------------------------
diff --git a/twill-discovery-api/pom.xml b/twill-discovery-api/pom.xml
index 0ce6c38..8d9552a 100644
--- a/twill-discovery-api/pom.xml
+++ b/twill-discovery-api/pom.xml
@@ -27,7 +27,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>twill-discovery-api</artifactId>
-    <name>Twill discovery service API</name>
+    <name>Apache Twill discovery service API</name>
 
     <dependencies>
         <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-discovery-core/pom.xml
----------------------------------------------------------------------
diff --git a/twill-discovery-core/pom.xml b/twill-discovery-core/pom.xml
index 2bdad6b..4b5d101 100644
--- a/twill-discovery-core/pom.xml
+++ b/twill-discovery-core/pom.xml
@@ -27,7 +27,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>twill-discovery-core</artifactId>
-    <name>Twill discovery service implementations</name>
+    <name>Apache Twill discovery service implementations</name>
 
     <dependencies>
         <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-examples/echo/pom.xml
----------------------------------------------------------------------
diff --git a/twill-examples/echo/pom.xml b/twill-examples/echo/pom.xml
index 8e665ab..bd52755 100644
--- a/twill-examples/echo/pom.xml
+++ b/twill-examples/echo/pom.xml
@@ -25,10 +25,10 @@ limitations under the License.
     <parent>
         <artifactId>twill-examples</artifactId>
         <groupId>org.apache.twill.example</groupId>
-        <version>0.2.0-incubating-SNAPSHOT</version>
+        <version>0.3.0-incubating-SNAPSHOT</version>
     </parent>
 
-    <name>Twill examples: Echo</name>
+    <name>Apache Twill examples: Echo</name>
     <description>
         Simple echo application that echos the command line arguments passed to it.
         Used to demonstrate usage of BundledJarApplication to run applications that have
@@ -72,4 +72,4 @@ limitations under the License.
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-examples/pom.xml
----------------------------------------------------------------------
diff --git a/twill-examples/pom.xml b/twill-examples/pom.xml
index 79a9581..b35816e 100644
--- a/twill-examples/pom.xml
+++ b/twill-examples/pom.xml
@@ -24,7 +24,7 @@ limitations under the License.
     <groupId>org.apache.twill.example</groupId>
     <artifactId>twill-examples</artifactId>
     <version>0.3.0-incubating-SNAPSHOT</version>
-    <name>Twill examples</name>
+    <name>Apache Twill examples</name>
     <packaging>pom</packaging>
 
     <modules>
@@ -33,8 +33,8 @@ limitations under the License.
     </modules>
 
     <properties>
-        <twill.version>0.2.0-incubating-SNAPSHOT</twill.version>
+        <twill.version>0.3.0-incubating-SNAPSHOT</twill.version>
         <twill.groupId>org.apache.twill</twill.groupId>
     </properties>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-examples/yarn/pom.xml
----------------------------------------------------------------------
diff --git a/twill-examples/yarn/pom.xml b/twill-examples/yarn/pom.xml
index 3deea44..00e5775 100644
--- a/twill-examples/yarn/pom.xml
+++ b/twill-examples/yarn/pom.xml
@@ -24,10 +24,10 @@ limitations under the License.
     <parent>
         <artifactId>twill-examples</artifactId>
         <groupId>org.apache.twill.example</groupId>
-        <version>0.2.0-incubating-SNAPSHOT</version>
+        <version>0.3.0-incubating-SNAPSHOT</version>
     </parent>
 
-    <name>Twill examples: YARN</name>
+    <name>Apache Twill examples: YARN</name>
     <description>Examples demonstrating usage of twill-yarn</description>
     <artifactId>twill-examples-yarn</artifactId>
 
@@ -79,4 +79,4 @@ limitations under the License.
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-ext/pom.xml
----------------------------------------------------------------------
diff --git a/twill-ext/pom.xml b/twill-ext/pom.xml
index 3d835bf..2389de2 100644
--- a/twill-ext/pom.xml
+++ b/twill-ext/pom.xml
@@ -27,7 +27,7 @@ limitations under the License.
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>twill-ext</artifactId>
-    <name>Twill extensions</name>
+    <name>Apache Twill extensions</name>
 
     <dependencies>
         <dependency>
@@ -54,4 +54,4 @@ limitations under the License.
         </dependency>
     </dependencies>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-yarn/pom.xml
----------------------------------------------------------------------
diff --git a/twill-yarn/pom.xml b/twill-yarn/pom.xml
index 014489c..1d70645 100644
--- a/twill-yarn/pom.xml
+++ b/twill-yarn/pom.xml
@@ -27,7 +27,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>twill-yarn</artifactId>
-    <name>Twill Apache Hadoop YARN library</name>
+    <name>Apache Twill Apache Hadoop YARN library</name>
 
     <properties>
         <output.dir>target/classes</output.dir>

http://git-wip-us.apache.org/repos/asf/incubator-twill/blob/d6504ebe/twill-zookeeper/pom.xml
----------------------------------------------------------------------
diff --git a/twill-zookeeper/pom.xml b/twill-zookeeper/pom.xml
index 8b1f4fe..1b37cc5 100644
--- a/twill-zookeeper/pom.xml
+++ b/twill-zookeeper/pom.xml
@@ -27,7 +27,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>twill-zookeeper</artifactId>
-    <name>Twill ZooKeeper client library</name>
+    <name>Apache Twill ZooKeeper client library</name>
 
     <dependencies>
         <dependency>