You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/04/06 15:04:20 UTC

incubator-tinkerpop git commit: Bind the attachment of zip artifacts to the archives profile.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master db4bcc194 -> fd6013178


Bind the attachment of zip artifacts to the archives profile.

In this way the binary zip artifacts won't be deployed without the archives profile enabled.


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

Branch: refs/heads/master
Commit: fd60131785d2f770a2920259c90e5dd3f59e3e44
Parents: db4bcc1
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Mon Apr 6 09:03:03 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Mon Apr 6 09:03:03 2015 -0400

----------------------------------------------------------------------
 gremlin-console/pom.xml | 2 +-
 gremlin-server/pom.xml  | 2 +-
 pom.xml                 | 6 ++++++
 3 files changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/fd601317/gremlin-console/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-console/pom.xml b/gremlin-console/pom.xml
index bc6362d..3bfd172 100644
--- a/gremlin-console/pom.xml
+++ b/gremlin-console/pom.xml
@@ -118,7 +118,7 @@ limitations under the License.
                     </execution>
                 </executions>
                 <configuration>
-                    <attach>true</attach>
+                    <attach>${attach-archives}</attach>
                     <descriptors>
                         <descriptor>src/assembly/standalone.xml</descriptor>
                         <descriptor>src/assembly/distribution.xml</descriptor>

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/fd601317/gremlin-server/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-server/pom.xml b/gremlin-server/pom.xml
index 6621fdf..fd71dbd 100644
--- a/gremlin-server/pom.xml
+++ b/gremlin-server/pom.xml
@@ -114,7 +114,7 @@ limitations under the License.
                     </execution>
                 </executions>
                 <configuration>
-                    <attach>true</attach>
+                    <attach>${attach-archives}</attach>
                     <descriptors>
                         <descriptor>src/assembly/standalone.xml</descriptor>
                         <descriptor>src/assembly/distribution.xml</descriptor>

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/fd601317/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3a6e873..3f4200b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -110,6 +110,11 @@ limitations under the License.
         <hadoop.version>1.2.1</hadoop.version>
         <javadoc-plugin.version>2.10.1</javadoc-plugin.version>
         <muteTestLogs>false</muteTestLogs>
+
+        <!-- By default zip archives in gremlin-console/server are not attached and thus not subject to deployment.
+             When running the "archives" profile, deployment is disabled but zips are attached so they become
+             subject to gpg and other plugin actions -->
+        <attach-archives>false</attach-archives>
     </properties>
     <build>
         <directory>${basedir}/target</directory>
@@ -568,6 +573,7 @@ limitations under the License.
                 </server.artifact>
                 <console.artifact>gremlin-console-${project.version}-distribution.zip
                 </console.artifact>
+                <attach-archives>true</attach-archives>
             </properties>
 
             <build>