You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2015/12/06 15:44:39 UTC

svn commit: r1718184 - in /jmeter/trunk: build.xml eclipse.project

Author: pmouawad
Date: Sun Dec  6 14:44:39 2015
New Revision: 1718184

URL: http://svn.apache.org/viewvc?rev=1718184&view=rev
Log:
Bug 58696 - Create Ant task to setup Eclipse project
Tab police 
Bugzilla Id: 58696

Modified:
    jmeter/trunk/build.xml
    jmeter/trunk/eclipse.project

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1718184&r1=1718183&r2=1718184&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Sun Dec  6 14:44:39 2015
@@ -1161,18 +1161,18 @@ run JMeter unless all the JMeter jars ar
     <fail message="Cannot find required classes"/>
   </target>
 
-  <target name="setup-eclipse-project" description="Setup eclipse project to contribute to JMeter">
-  	<echo>Creating eclipse project</echo>
+ <target name="setup-eclipse-project" description="Setup eclipse project to contribute to JMeter">
+    <echo>Creating eclipse project</echo>
     <copy overwrite="false" file="eclipse.project" tofile=".project" />
     <copy overwrite="false" file="eclipse.classpath" tofile=".classpath"/>
-  	<input message="Next step will download dependencies for JMeter, do you agree with the download ?" addproperty="do.download" validargs="y,n"/>
-  	<condition property="do.abort">
-  	    <equals arg1="n" arg2="${do.download}"/>
-  	</condition>
+    <input message="Next step will download dependencies for JMeter, do you agree with the download ?" addproperty="do.download" validargs="y,n"/>
+    <condition property="do.abort">
+        <equals arg1="n" arg2="${do.download}"/>
+    </condition>
     <fail message="You didn't agree to download dependencies, ensure you call Ant target 'download_jars when importing project" if="do.abort"/>
     <echo>Downloading dependencies</echo>
-  	<antcall target="download_jars" />
-  	<echo>Project has been successfully created, you can now import it in Eclipse using Right click > Import > Existing projects into Workspace</echo>
+    <antcall target="download_jars" />
+    <echo>Project has been successfully created, you can now import it in Eclipse using Right click > Import > Existing projects into Workspace</echo>
   </target>
 	
   <target name="install" depends="package" description="Install JMeter. (Compiles code and creates jars)">
@@ -1326,7 +1326,7 @@ run JMeter unless all the JMeter jars ar
     <exclude name="${dest.jar.jmeter}/testfiles/*.out"/>
     <exclude name="${dest.jar.jmeter}/testfiles/Sample_*.png"/>
     <include name="eclipse.classpath"/>
-  	<include name="eclipse.project"/>
+    <include name="eclipse.project"/>
     <include name="eclipse.readme"/>
     <include name="checkstyle.xml"/>
     <include name="${lib.dir}/aareadme.txt"/>

Modified: jmeter/trunk/eclipse.project
URL: http://svn.apache.org/viewvc/jmeter/trunk/eclipse.project?rev=1718184&r1=1718183&r2=1718184&view=diff
==============================================================================
--- jmeter/trunk/eclipse.project (original)
+++ jmeter/trunk/eclipse.project Sun Dec  6 14:44:39 2015
@@ -20,18 +20,18 @@
    Eclipse seems to use TABS for indenting the entries.
  -->
 <projectDescription>
-	<name>jmeter</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-	</natures>
+    <name>jmeter</name>
+    <comment></comment>
+    <projects>
+    </projects>
+    <buildSpec>
+        <buildCommand>
+            <name>org.eclipse.jdt.core.javabuilder</name>
+            <arguments>
+            </arguments>
+        </buildCommand>
+    </buildSpec>
+    <natures>
+        <nature>org.eclipse.jdt.core.javanature</nature>
+    </natures>
 </projectDescription>