You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@distributedlog.apache.org by si...@apache.org on 2017/01/11 07:03:50 UTC

[1/3] incubator-distributedlog git commit: Javdoc build should use "org.apache.distributedlog"

Repository: incubator-distributedlog
Updated Branches:
  refs/heads/release-0.4.0-incubating 9272f653d -> f82861e78


Javdoc build should use "org.apache.distributedlog"

The packages are now under "org.apache.distributedlog", instead of "com.twitter.distributedlog".

Author: Sijie Guo <si...@apache.org>

Reviewers: Jia Zhai <zh...@apache.org>

Closes #108 from sijie/sijie/fix_javadoc_build


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

Branch: refs/heads/release-0.4.0-incubating
Commit: 3a612210d7e8e28eab0372d5318f6f0d2bfdd46b
Parents: 9272f65
Author: Sijie Guo <si...@apache.org>
Authored: Tue Jan 10 22:56:11 2017 -0800
Committer: Sijie Guo <si...@apache.org>
Committed: Tue Jan 10 23:00:52 2017 -0800

----------------------------------------------------------------------
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/3a612210/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c757adc..df46106 100644
--- a/pom.xml
+++ b/pom.xml
@@ -134,15 +134,15 @@
           <groups>
             <group>
               <title>Core Library</title>
-              <packages>com.twitter.distributedlog:com.twitter.distributedlog.annotations:com.twitter.distributedlog.callback:com.twitter.distributedlog.exceptions:com.twitter.distributedlog.feature:com.twitter.distributedlog.io:com.twitter.distributedlog.lock:com.twitter.distributedlog.logsegment:com.twitter.distributedlog.metadata:com.twitter.distributedlog.namespace:com.twitter.distributedlog.net:com.twitter.distributedlog.stats:com.twitter.distributedlog.subscription</packages>
+              <packages>org.apache.distributedlog:org.apache.distributedlog.annotations:org.apache.distributedlog.callback:org.apache.distributedlog.exceptions:org.apache.distributedlog.feature:org.apache.distributedlog.io:org.apache.distributedlog.lock:org.apache.distributedlog.logsegment:org.apache.distributedlog.metadata:org.apache.distributedlog.namespace:org.apache.distributedlog.net:org.apache.distributedlog.stats:org.apache.distributedlog.subscription</packages>
             </group>
             <group>
               <title>Proxy Client</title>
-              <packages>com.twitter.distributedlog.client*:com.twitter.distributedlog.service*</packages>
+              <packages>org.apache.distributedlog.client*:org.apache.distributedlog.service*</packages>
             </group>
           </groups>
           <excludePackageNames>
-            com.twitter.distributedlog.acl:com.twitter.distributedlog.admin:com.twitter.distributedlog.auditor:com.twitter.distributedlog.basic:com.twitter.distributedlog.benchmark*:com.twitter.distributedlog.bk:com.twitter.distributedlog.ownership:com.twitter.distributedlog.proxy:com.twitter.distributedlog.resolver:com.twitter.distributedlog.service.*:com.twitter.distributedlog.config:com.twitter.distributedlog.function:com.twitter.distributedlog.impl*:com.twitter.distributedlog.injector:com.twitter.distributedlog.kafka:com.twitter.distributedlog.limiter:com.twitter.distributedlog.mapreduce:com.twitter.distributedlog.messaging:com.twitter.distributedlog.rate:com.twitter.distributedlog.readahead:com.twitter.distributedlog.selector:com.twitter.distributedlog.stats:com.twitter.distributedlog.thrift*:com.twitter.distributedlog.tools:com.twitter.distributedlog.util:com.twitter.distributedlog.zk:org.apache.bookkeeper.client:org.apache.bookkeeper.stats 
+            org.apache.distributedlog.acl:org.apache.distributedlog.admin:org.apache.distributedlog.auditor:org.apache.distributedlog.basic:org.apache.distributedlog.benchmark*:org.apache.distributedlog.bk:org.apache.distributedlog.ownership:org.apache.distributedlog.proxy:org.apache.distributedlog.resolver:org.apache.distributedlog.service.*:org.apache.distributedlog.config:org.apache.distributedlog.function:org.apache.distributedlog.impl*:org.apache.distributedlog.injector:org.apache.distributedlog.kafka:org.apache.distributedlog.limiter:org.apache.distributedlog.mapreduce:org.apache.distributedlog.messaging:org.apache.distributedlog.rate:org.apache.distributedlog.readahead:org.apache.distributedlog.selector:org.apache.distributedlog.stats:org.apache.distributedlog.thrift*:org.apache.distributedlog.tools:org.apache.distributedlog.util:org.apache.distributedlog.zk:org.apache.bookkeeper.client:org.apache.bookkeeper.stats 
           </excludePackageNames>
         </configuration>
         <executions>


[2/3] incubator-distributedlog git commit: DL-183: Configure DL to generate source jar

Posted by si...@apache.org.
DL-183: Configure DL to generate source jar

also move the plugin version definition to the properties

Author: Sijie Guo <si...@apache.org>

Reviewers: Jia Zhai <zh...@apache.org>

Closes #113 from sijie/sijie/generate_source and squashes the following commits:

6fa1ce5 [Sijie Guo] Merge branch 'master' into sijie/generate_source
d355d6a [Sijie Guo] Generate source jar during jar phase


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

Branch: refs/heads/release-0.4.0-incubating
Commit: 16f68b24db0b0cd5d200243833b78bb2f863b574
Parents: 3a61221
Author: Sijie Guo <si...@apache.org>
Authored: Tue Jan 10 22:59:27 2017 -0800
Committer: Sijie Guo <si...@apache.org>
Committed: Tue Jan 10 23:01:11 2017 -0800

----------------------------------------------------------------------
 pom.xml | 25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/16f68b24/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index df46106..3094aa5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,11 +114,17 @@
     <stats-util.version>0.0.58</stats-util.version>
     <zookeeper.version>3.5.1-alpha</zookeeper.version>
     <!-- plugin dependencies -->
+    <apache-rat-plugin.version>0.7</apache-rat-plugin.version>
+    <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
+    <coveralls-maven-plugin.version>4.1.0</coveralls-maven-plugin.version>
+    <findbugs-maven-plugin.version>3.0.3</findbugs-maven-plugin.version>
     <puppycrawl.checkstyle.version>6.19</puppycrawl.checkstyle.version>
     <maven-assembly-plugin.version>2.2.1</maven-assembly-plugin.version>
     <maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
     <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
     <maven-jar-plugin.version>2.2</maven-jar-plugin.version>
+    <maven-javadoc-plugin.version>2.8</maven-javadoc-plugin.version>
+    <maven-source-plugin.version>2.2.1</maven-source-plugin.version>
     <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
     <scrooge-maven-plugin.version>3.17.0</scrooge-maven-plugin.version>
   </properties>
@@ -127,7 +133,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.8</version>
+        <version>${maven-javadoc-plugin.version}</version>
         <configuration>
           <!-- Avoid for missing javadoc comments to be marked as errors -->
           <additionalparam>-Xdoclint:none</additionalparam>
@@ -157,7 +163,7 @@
       </plugin>
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.2.1</version>
+        <version>${maven-assembly-plugin.version}</version>
         <configuration>
 	  <tarLongFileMode>gnu</tarLongFileMode>
           <descriptors>
@@ -168,11 +174,11 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
-        <version>3.0.3</version>
+        <version>${findbugs-maven-plugin.version}</version>
       </plugin>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.1</version>
+        <version>${maven-compiler-plugin.version}</version>
         <configuration>
           <source>1.7</source>
           <target>1.7</target>
@@ -181,11 +187,10 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
-        <version>2.2.1</version>
+        <version>${maven-source-plugin.version}</version>
         <executions>
           <execution>
             <id>attach-sources</id>
-            <phase>deploy</phase>
             <goals>
               <goal>jar</goal>
             </goals>
@@ -195,7 +200,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.19.1</version>
+        <version>${maven-surefire-plugin.version}</version>
         <configuration>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>
           <argLine>-Xmx3G -Djava.net.preferIPv4Stack=true -XX:MaxDirectMemorySize=2G</argLine>
@@ -206,7 +211,7 @@
       <plugin>
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
-        <version>0.7</version>
+        <version>${apache-rat-plugin.version}</version>
         <configuration>
           <excludes>
             <exclude>docs/**/*</exclude>
@@ -231,12 +236,12 @@
       <plugin>
         <groupId>org.eluder.coveralls</groupId>
         <artifactId>coveralls-maven-plugin</artifactId>
-        <version>4.1.0</version>
+        <version>${coveralls-maven-plugin.version}</version>
       </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
-        <version>2.7</version>
+        <version>${cobertura-maven-plugin.version}</version>
         <configuration>
           <formats>
             <format>html</format>


[3/3] incubator-distributedlog git commit: [maven-release-plugin] prepare release v0.4.0-incubating-RC1_2.11

Posted by si...@apache.org.
[maven-release-plugin] prepare release v0.4.0-incubating-RC1_2.11


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

Branch: refs/heads/release-0.4.0-incubating
Commit: f82861e7868b32cd1e0301703e02e4d232750f1e
Parents: 16f68b2
Author: Sijie Guo <si...@apache.org>
Authored: Tue Jan 10 23:03:48 2017 -0800
Committer: Sijie Guo <si...@apache.org>
Committed: Tue Jan 10 23:03:48 2017 -0800

----------------------------------------------------------------------
 distributedlog-benchmark/pom.xml                          | 2 +-
 distributedlog-build-tools/pom.xml                        | 4 ++--
 distributedlog-client/pom.xml                             | 2 +-
 distributedlog-core/pom.xml                               | 2 +-
 distributedlog-protocol/pom.xml                           | 2 +-
 distributedlog-service/pom.xml                            | 2 +-
 distributedlog-tutorials/distributedlog-basic/pom.xml     | 2 +-
 distributedlog-tutorials/distributedlog-kafka/pom.xml     | 2 +-
 distributedlog-tutorials/distributedlog-mapreduce/pom.xml | 2 +-
 distributedlog-tutorials/distributedlog-messaging/pom.xml | 2 +-
 distributedlog-tutorials/pom.xml                          | 2 +-
 pom.xml                                                   | 4 ++--
 12 files changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-benchmark/pom.xml b/distributedlog-benchmark/pom.xml
index e62183b..6863052 100644
--- a/distributedlog-benchmark/pom.xml
+++ b/distributedlog-benchmark/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
   </parent>
   <artifactId>distributedlog-benchmark_2.11</artifactId>
   <name>Apache DistributedLog :: Benchmark</name>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-build-tools/pom.xml b/distributedlog-build-tools/pom.xml
index 004f51b..c78b59d 100644
--- a/distributedlog-build-tools/pom.xml
+++ b/distributedlog-build-tools/pom.xml
@@ -20,10 +20,10 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>distributedlog-build-tools</artifactId>
   <name>Apache DistributedLog :: Build Tools</name>
-  <version>0.4.0-incubating-SNAPSHOT</version>
+  <version>0.4.0-incubating</version>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-client/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-client/pom.xml b/distributedlog-client/pom.xml
index 9179a3f..bceb91a 100644
--- a/distributedlog-client/pom.xml
+++ b/distributedlog-client/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
   </parent>
   <artifactId>distributedlog-client_2.11</artifactId>
   <name>Apache DistributedLog :: Proxy Client</name>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-core/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-core/pom.xml b/distributedlog-core/pom.xml
index 38d8db7..cff4878 100644
--- a/distributedlog-core/pom.xml
+++ b/distributedlog-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
   </parent>
   <artifactId>distributedlog-core_2.11</artifactId>
   <name>Apache DistributedLog :: Core Library</name>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-protocol/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-protocol/pom.xml b/distributedlog-protocol/pom.xml
index d8b9359..3b546fc 100644
--- a/distributedlog-protocol/pom.xml
+++ b/distributedlog-protocol/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
   </parent>
   <artifactId>distributedlog-protocol_2.11</artifactId>
   <name>Apache DistributedLog :: Protocol</name>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-service/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-service/pom.xml b/distributedlog-service/pom.xml
index b0125d6..05f2827 100644
--- a/distributedlog-service/pom.xml
+++ b/distributedlog-service/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
   </parent>
   <artifactId>distributedlog-service_2.11</artifactId>
   <name>Apache DistributedLog :: Proxy Service</name>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-tutorials/distributedlog-basic/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-basic/pom.xml b/distributedlog-tutorials/distributedlog-basic/pom.xml
index 704847a..6bad39c 100644
--- a/distributedlog-tutorials/distributedlog-basic/pom.xml
+++ b/distributedlog-tutorials/distributedlog-basic/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>distributedlog_2.11</artifactId>
     <groupId>org.apache.distributedlog</groupId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
     <relativePath>../..</relativePath>
   </parent>
   <groupId>org.apache.distributedlog</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-tutorials/distributedlog-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-kafka/pom.xml b/distributedlog-tutorials/distributedlog-kafka/pom.xml
index fb37f4a..51aedb0 100644
--- a/distributedlog-tutorials/distributedlog-kafka/pom.xml
+++ b/distributedlog-tutorials/distributedlog-kafka/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>distributedlog_2.11</artifactId>
     <groupId>org.apache.distributedlog</groupId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
     <relativePath>../..</relativePath>
   </parent>
   <groupId>org.apache.distributedlog</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-mapreduce/pom.xml b/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
index c134798..92c24b2 100644
--- a/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
+++ b/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>distributedlog_2.11</artifactId>
     <groupId>org.apache.distributedlog</groupId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
     <relativePath>../..</relativePath>
   </parent>
   <groupId>org.apache.distributedlog</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-tutorials/distributedlog-messaging/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-messaging/pom.xml b/distributedlog-tutorials/distributedlog-messaging/pom.xml
index b21f244..298d924 100644
--- a/distributedlog-tutorials/distributedlog-messaging/pom.xml
+++ b/distributedlog-tutorials/distributedlog-messaging/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>distributedlog_2.11</artifactId>
     <groupId>org.apache.distributedlog</groupId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
     <relativePath>../..</relativePath>
   </parent>
   <groupId>org.apache.distributedlog</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/distributedlog-tutorials/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/pom.xml b/distributedlog-tutorials/pom.xml
index cb8c864..7c60057 100644
--- a/distributedlog-tutorials/pom.xml
+++ b/distributedlog-tutorials/pom.xml
@@ -19,7 +19,7 @@
   <parent>
     <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog_2.11</artifactId>
-    <version>0.4.0-incubating-SNAPSHOT</version>
+    <version>0.4.0-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>distributedlog-tutorials_2.11</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/f82861e7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3094aa5..6d5d9cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
   <groupId>org.apache.distributedlog</groupId>
   <artifactId>distributedlog_2.11</artifactId>
   <packaging>pom</packaging>
-  <version>0.4.0-incubating-SNAPSHOT</version>
+  <version>0.4.0-incubating</version>
   <name>Apache DistributedLog :: Parent</name>
   <description>
     Apache DistributedLog provides a high performance replicated log service.
@@ -43,7 +43,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-distributedlog.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-distributedlog.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf?p=incubator-distributedlog.git;a=summary</url>
-    <tag>release-0.4.0-incubating</tag>
+    <tag>v0.4.0-incubating-RC1_2.11</tag>
   </scm>
   <issueManagement>
     <system>jira</system>