You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2016/05/05 04:09:32 UTC

[1/4] incubator-mnemonic git commit: MNEMONIC-38: Generate a single source release artifact

Repository: incubator-mnemonic
Updated Branches:
  refs/heads/master e3705b8b0 -> 5667c24fa


MNEMONIC-38: Generate a single source release artifact


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

Branch: refs/heads/master
Commit: 8ad2b375d9caa9839e9242d4fa9ce862ec29e861
Parents: e3705b8
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Wed May 4 20:27:15 2016 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Wed May 4 20:51:51 2016 -0700

----------------------------------------------------------------------
 allocator-services/pom.xml      |  2 +-
 build-tools/source-assembly.xml | 53 ++++++++++++++++++++++++++++++++++++
 pom.xml                         | 30 +++++++++++++++++++-
 3 files changed, 83 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8ad2b375/allocator-services/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/pom.xml b/allocator-services/pom.xml
index 5dd4774..d82f2ff 100644
--- a/allocator-services/pom.xml
+++ b/allocator-services/pom.xml
@@ -13,7 +13,7 @@
   <packaging>pom</packaging>
  
   <name>Mnemonic Project Allocator Services Parent POM</name>
-  <url>https://github.com/apache/incubator-mnemonic</url>
+  <url>http://mnemonic.incubator.apache.org</url>
 
   <properties>
     <service.basedir>${project.parent.basedir}</service.basedir>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8ad2b375/build-tools/source-assembly.xml
----------------------------------------------------------------------
diff --git a/build-tools/source-assembly.xml b/build-tools/source-assembly.xml
new file mode 100644
index 0000000..cda6923
--- /dev/null
+++ b/build-tools/source-assembly.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  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.
+-->
+
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+  <id>src</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>tar.bz2</format>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>${project.basedir}</directory>
+      <includes>
+        <include>README*</include>
+        <include>LICENSE*</include>
+        <include>NOTICE*</include>
+        <include>pom.xml</include>
+      </includes>
+      <useDefaultExcludes>true</useDefaultExcludes>
+    </fileSet>
+    <fileSet>
+      <directory>${project.basedir}/src</directory>
+      <useDefaultExcludes>true</useDefaultExcludes>
+      <excludes>
+        <exclude>/main/native/build/**</exclude>
+	<exclude>dependency-reduced-pom.xml</exclude>
+	<exclude>*.dat</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>
+

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8ad2b375/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 89f24a8..bf772c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
   <version>0.1.1-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Mnemonic Project Parent POM</name>
-  <url>https://github.com/apache/incubator-mnemonic</url>
+  <url>http://mnemonic.incubator.apache.org</url>
 
   <parent>
     <groupId>org.apache</groupId>
@@ -417,6 +417,34 @@
   </profile>
 
   <profile>
+    <id>apache-release</id>
+    <build>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.4</version>
+          <configuration>
+            <finalName>apache-mnemonic-${project.version}</finalName>
+            <descriptor>build-tools/source-assembly.xml</descriptor>
+            <formats>
+              <format>tar.gz</format>
+            </formats>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-remote-resources-plugin</artifactId>
+          <configuration>
+            <!-- Disable this plugin so that it won't generate a DEPENDENCIES file in the source tar -->
+            <skip>true</skip>
+          </configuration>
+        </plugin>
+      </plugins>
+    </build>
+  </profile>
+
+  <profile>
     <id>release-sign-artifacts</id>
     <activation>
       <property>


[3/4] incubator-mnemonic git commit: Merge branch 'branch-0.1.1'

Posted by ga...@apache.org.
Merge branch 'branch-0.1.1'


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

Branch: refs/heads/master
Commit: 9035bfd8fb5b174e003c3970550277d99022756d
Parents: 8ad2b37 8b26f14
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Wed May 4 21:08:28 2016 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Wed May 4 21:08:28 2016 -0700

----------------------------------------------------------------------
 allocator-services/nvml-vmem-service/pom.xml | 2 +-
 allocator-services/pmalloc-service/pom.xml   | 2 +-
 allocator-services/pom.xml                   | 2 +-
 collections/pom.xml                          | 2 +-
 core/pom.xml                                 | 2 +-
 examples/pom.xml                             | 2 +-
 pom.xml                                      | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------



[2/4] incubator-mnemonic git commit: Prepare for releasing 0.1.1-incubating

Posted by ga...@apache.org.
Prepare for releasing 0.1.1-incubating


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

Branch: refs/heads/master
Commit: 8b26f1480bd4d3fd9ced65f6598d5fa1378015ad
Parents: 8ad2b37
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Wed May 4 20:52:44 2016 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Wed May 4 20:52:44 2016 -0700

----------------------------------------------------------------------
 allocator-services/nvml-vmem-service/pom.xml | 2 +-
 allocator-services/pmalloc-service/pom.xml   | 2 +-
 allocator-services/pom.xml                   | 2 +-
 collections/pom.xml                          | 2 +-
 core/pom.xml                                 | 2 +-
 examples/pom.xml                             | 2 +-
 pom.xml                                      | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/allocator-services/nvml-vmem-service/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/nvml-vmem-service/pom.xml b/allocator-services/nvml-vmem-service/pom.xml
index d296349..c98f590 100644
--- a/allocator-services/nvml-vmem-service/pom.xml
+++ b/allocator-services/nvml-vmem-service/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
     <artifactId>allocator-services-parent-project</artifactId>
-    <version>0.1.1-incubating-SNAPSHOT</version>
+    <version>0.1.1-incubating</version>
   </parent>
   <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
   <artifactId>nvml-vmem-service</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/allocator-services/pmalloc-service/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/pmalloc-service/pom.xml b/allocator-services/pmalloc-service/pom.xml
index 78f7fb5..ee87737 100644
--- a/allocator-services/pmalloc-service/pom.xml
+++ b/allocator-services/pmalloc-service/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
     <artifactId>allocator-services-parent-project</artifactId>
-    <version>0.1.1-incubating-SNAPSHOT</version>
+    <version>0.1.1-incubating</version>
   </parent>
   <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
   <artifactId>pmalloc-service</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/allocator-services/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/pom.xml b/allocator-services/pom.xml
index d82f2ff..d34b2ed 100644
--- a/allocator-services/pom.xml
+++ b/allocator-services/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating-SNAPSHOT</version>
+    <version>0.1.1-incubating</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
  

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/collections/pom.xml
----------------------------------------------------------------------
diff --git a/collections/pom.xml b/collections/pom.xml
index 58aca98..0641e07 100644
--- a/collections/pom.xml
+++ b/collections/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating-SNAPSHOT</version>
+    <version>0.1.1-incubating</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index 5e44973..6fb7682 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating-SNAPSHOT</version>
+    <version>0.1.1-incubating</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/examples/pom.xml
----------------------------------------------------------------------
diff --git a/examples/pom.xml b/examples/pom.xml
index 7ff1ed9..3cc4f5c 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -3,7 +3,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating-SNAPSHOT</version>
+    <version>0.1.1-incubating</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/8b26f148/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bf772c9..85b1f02 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.mnemonic</groupId>
   <artifactId>mnemonic-parent</artifactId>
-  <version>0.1.1-incubating-SNAPSHOT</version>
+  <version>0.1.1-incubating</version>
   <packaging>pom</packaging>
   <name>Mnemonic Project Parent POM</name>
   <url>http://mnemonic.incubator.apache.org</url>


[4/4] incubator-mnemonic git commit: Bump version to 0.1.2-incubating-SNAPSHOT

Posted by ga...@apache.org.
Bump version to 0.1.2-incubating-SNAPSHOT


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

Branch: refs/heads/master
Commit: 5667c24fa646fbb9f78651213425829e6dcefadb
Parents: 9035bfd
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Wed May 4 21:09:18 2016 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Wed May 4 21:09:18 2016 -0700

----------------------------------------------------------------------
 allocator-services/nvml-vmem-service/pom.xml | 2 +-
 allocator-services/pmalloc-service/pom.xml   | 2 +-
 allocator-services/pom.xml                   | 2 +-
 collections/pom.xml                          | 2 +-
 core/pom.xml                                 | 2 +-
 examples/pom.xml                             | 2 +-
 pom.xml                                      | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/allocator-services/nvml-vmem-service/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/nvml-vmem-service/pom.xml b/allocator-services/nvml-vmem-service/pom.xml
index c98f590..83c9e4f 100644
--- a/allocator-services/nvml-vmem-service/pom.xml
+++ b/allocator-services/nvml-vmem-service/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
     <artifactId>allocator-services-parent-project</artifactId>
-    <version>0.1.1-incubating</version>
+    <version>0.1.2-incubating-SNAPSHOT</version>
   </parent>
   <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
   <artifactId>nvml-vmem-service</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/allocator-services/pmalloc-service/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/pmalloc-service/pom.xml b/allocator-services/pmalloc-service/pom.xml
index ee87737..419e7f0 100644
--- a/allocator-services/pmalloc-service/pom.xml
+++ b/allocator-services/pmalloc-service/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
     <artifactId>allocator-services-parent-project</artifactId>
-    <version>0.1.1-incubating</version>
+    <version>0.1.2-incubating-SNAPSHOT</version>
   </parent>
   <groupId>org.apache.mnemonic.service.allocatorservice</groupId>
   <artifactId>pmalloc-service</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/allocator-services/pom.xml
----------------------------------------------------------------------
diff --git a/allocator-services/pom.xml b/allocator-services/pom.xml
index d34b2ed..383afc1 100644
--- a/allocator-services/pom.xml
+++ b/allocator-services/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating</version>
+    <version>0.1.2-incubating-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
  

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/collections/pom.xml
----------------------------------------------------------------------
diff --git a/collections/pom.xml b/collections/pom.xml
index 0641e07..e76a954 100644
--- a/collections/pom.xml
+++ b/collections/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating</version>
+    <version>0.1.2-incubating-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index 6fb7682..5572c44 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating</version>
+    <version>0.1.2-incubating-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/examples/pom.xml
----------------------------------------------------------------------
diff --git a/examples/pom.xml b/examples/pom.xml
index 3cc4f5c..183b826 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -3,7 +3,7 @@
   <parent>
     <groupId>org.apache.mnemonic</groupId>
     <artifactId>mnemonic-parent</artifactId>
-    <version>0.1.1-incubating</version>
+    <version>0.1.2-incubating-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/5667c24f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 85b1f02..eed9e80 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.mnemonic</groupId>
   <artifactId>mnemonic-parent</artifactId>
-  <version>0.1.1-incubating</version>
+  <version>0.1.2-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Mnemonic Project Parent POM</name>
   <url>http://mnemonic.incubator.apache.org</url>