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 14:30:44 UTC

incubator-tinkerpop git commit: Use standard apache configuration for source archive generation.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 991faa89a -> 38fc318fd


Use standard apache configuration for source archive generation.


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

Branch: refs/heads/master
Commit: 38fc318fda4e8d035ae26572001ee7b3da6634fd
Parents: 991faa8
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Mon Apr 6 08:30:24 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Mon Apr 6 08:30:24 2015 -0400

----------------------------------------------------------------------
 README.asciidoc |  3 ++-
 assembly.xml    | 33 ---------------------------------
 pom.xml         | 17 -----------------
 3 files changed, 2 insertions(+), 51 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/38fc318f/README.asciidoc
----------------------------------------------------------------------
diff --git a/README.asciidoc b/README.asciidoc
index 3ea1c0a..b7602f0 100644
--- a/README.asciidoc
+++ b/README.asciidoc
@@ -39,7 +39,8 @@ Building and Testing
 * Build JavaDocs: `mvn process-resources -Djavadoc`
 * Check for Apache License headers: `mvn apache-rat:check`
 * Deploy JavaDocs/AsciiDocs: `bin/publish-docs.sh svn-username`
-* Generate signed zip archives: `mvn install -Darchives`
+* Generate signed binary distribution zip archives: `mvn install -Darchives`
+* Generate signed source distribution zip archive (standard Apache configuration): `mvn clean install -Papache-release`
 * Integration Tests: `mvn verify -DskipIntegrationTests=false`
 * Performance Tests: `mvn verify -DskipPerformanceTests=false`
 * Gatling Load Tests: `mvn test -Pgatling -Dhost={hostname}`

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/38fc318f/assembly.xml
----------------------------------------------------------------------
diff --git a/assembly.xml b/assembly.xml
deleted file mode 100644
index a249316..0000000
--- a/assembly.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<!--
-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>
-    <id>src</id>
-    <formats>
-        <format>zip</format>
-    </formats>
-    <fileSets>
-        <fileSet>
-            <directory>${project.basedir}</directory>
-            <outputDirectory></outputDirectory>
-            <excludes>
-                <exclude>**/*.iml</exclude>
-                <exclude>**/target/**</exclude>
-                <exclude>**/.*/**</exclude>
-            </excludes>
-        </fileSet>
-    </fileSets>
-</assembly>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/38fc318f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 38c6d65..e5d254d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -568,8 +568,6 @@ limitations under the License.
                 </server.artifact>
                 <console.artifact>gremlin-console-${project.version}-distribution.zip
                 </console.artifact>
-                <tinkerpop.artifact>tinkerpop-${project.version}-src.zip
-                </tinkerpop.artifact>
             </properties>
 
             <build>
@@ -647,21 +645,6 @@ limitations under the License.
                                                 </checksum>
                                             </then>
                                         </if>
-                                        <if>
-                                            <available file="target/${tinkerpop.artifact}"/>
-                                            <then>
-                                                <checksum algorithm="MD5" fileext=".md5">
-                                                    <fileset dir="target">
-                                                        <include name="*.zip" />
-                                                    </fileset>
-                                                </checksum>
-                                                <checksum algorithm="SHA1" fileext=".sha">
-                                                    <fileset dir="target">
-                                                        <include name="*.zip" />
-                                                    </fileset>
-                                                </checksum>
-                                            </then>
-                                        </if>
                                     </tasks>
                                 </configuration>
                             </execution>