You are viewing a plain text version of this content. The canonical link for it is here.
Posted to devnull@infra.apache.org by vl...@apache.org on 2019/06/08 18:41:35 UTC

[jmeter] annotated tag v1_8_1 created (now 0917149)

This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a change to annotated tag v1_8_1
in repository https://gitbox.apache.org/repos/asf/jmeter.git.


      at 0917149  (tag)
 tagging a36953f51bfcc656d02ce1df0537bb2e4303ed2a (commit)
      by Sebastian Bazley
      on Tue Nov 1 21:24:22 2011 +0000

- Log -----------------------------------------------------------------
v1_8_1
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new 73de17d  This commit was manufactured by cvs2svn to create tag 'v1_8_1'.
     new a36953f  JMeter TLP move

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[jmeter] 01/02: This commit was manufactured by cvs2svn to create tag 'v1_8_1'.

Posted by vl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to annotated tag v1_8_1
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 73de17d85a1eb7771cea7a392201a021bf2879fb
Author: No Author <de...@apache.org>
AuthorDate: Mon Feb 3 20:29:00 2003 +0000

    This commit was manufactured by cvs2svn to create tag 'v1_8_1'.
    
    git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/tags/v1_8_1@323069 13f79535-47bb-0310-9956-ffa450edef68
    
    Former-commit-id: 5bb39c3610ae869e18974f54f21d02a758984ca5
---
 build.xml | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/build.xml b/build.xml
index 954044c..5920a26 100644
--- a/build.xml
+++ b/build.xml
@@ -329,6 +329,12 @@
     <include name="README"/>
     <include name="LICENSE"/>
   </patternset>
+  
+  <patternset id="dist.sources">
+  <include name="${src.dir}/"/>
+  <include name="${docs.src}/"/>
+  <include name="*"/>
+  </patternset>
 
   <target name="dist" depends="assume-libs-present,clean,install,all-docs,test" description="Create the distribution packages.">
     <property name="dist.name" value="jakarta-jmeter-${version}"/>
@@ -357,6 +363,36 @@
       <zipfileset includes="${docs.api.dest}/" dir="." prefix="${dist.name}" defaultexcludes="yes"/>
     </zip>
   </target>
+  
+  <target name="src_dist" depends="assume-libs-present,clean,install,all-docs,test" description="Create the distribution packages.">
+    <property name="dist.name" value="jakarta-jmeter-${version}"/>
+    <mkdir dir="${dist.dir}"/>
+    <!-- copy 3rd party libraries if not already there -->
+    <copy todir="${lib.dir}" flatten="true">
+      <fileset refid="external.jars"/>
+    </copy>
+    <tar destfile="${dist.dir}/${dist.name}.src.tar" longfile="gnu">
+      <tarfileset dir="." prefix="${dist.name}" excludes="${dist.executables}" defaultexcludes="yes">
+        <patternset refid="dist.binaries"/>
+        <patternset refid="dist.sources"/>
+      </tarfileset>
+      <tarfileset mode="755" includes="${dist.executables}" dir="." prefix="${dist.name}" defaultexcludes="yes"/>
+    </tar>
+    <gzip zipfile="${dist.dir}/${dist.name}.src.tgz" src="${dist.dir}/${dist.name}.src.tar" />
+    <zip zipfile="${dist.dir}/${dist.name}.src.zip">
+      <zipfileset dir="." prefix="${dist.name}" defaultexcludes="yes">
+        <patternset refid="dist.binaries"/>
+        <patternset refid="dist.sources"/>
+      </zipfileset>
+    </zip>
+    <tar destfile="${dist.dir}/${dist.name}-javadoc.tar" longfile="gnu">
+      <tarfileset includes="${docs.api.dest}/" dir="." prefix="${dist.name}" defaultexcludes="yes"/>
+    </tar>
+    <gzip zipfile="${dist.dir}/${dist.name}-javadoc.tgz" src="${dist.dir}/${dist.name}-javadoc.tar" />
+    <zip zipfile="${dist.dir}/${dist.name}-javadoc.zip">
+      <zipfileset includes="${docs.api.dest}/" dir="." prefix="${dist.name}" defaultexcludes="yes"/>
+    </zip>
+  </target>
 
   <target name="clean" description="Clean up to force a build from source.">
     <delete file="bin/ApacheJMeter.jar"/>


[jmeter] 02/02: JMeter TLP move

Posted by vl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to annotated tag v1_8_1
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit a36953f51bfcc656d02ce1df0537bb2e4303ed2a
Author: Sebastian Bazley <se...@apache.org>
AuthorDate: Tue Nov 1 21:24:22 2011 +0000

    JMeter TLP move
    
    git-svn-id: https://svn.apache.org/repos/asf/jmeter/tags/v1_8_1@1196284 13f79535-47bb-0310-9956-ffa450edef68
    
    Former-commit-id: 5d8e1abc60a80e31b67e9d46fc5f439a39ef3ac9