You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2012/01/24 18:26:47 UTC

svn commit: r1235363 - in /jmeter/trunk: build.xml res/maven/ApacheJMeter_junit-test.pom

Author: sebb
Date: Tue Jan 24 17:26:46 2012
New Revision: 1235363

URL: http://svn.apache.org/viewvc?rev=1235363&view=rev
Log:
Add JUnit sample test jar

Added:
    jmeter/trunk/res/maven/ApacheJMeter_junit-test.pom   (with props)
Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1235363&r1=1235362&r2=1235363&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Tue Jan 24 17:26:46 2012
@@ -1469,6 +1469,7 @@ run JMeter unless all the JMeter jars ar
       <fileset dir="${dest.jar.jmeter}" includes="ApacheJMeter.jar"/>
       <fileset dir="${lib.dir}" includes="jorphan.jar"/>
     </copy>
+    <copy tofile="${maven.dir}/ApacheJMeter_junit-test.jar" file="${lib.dir}/junit/test.jar"/>
     <!-- 
         Create the Maven jar needed to hold configuration data
         Cannot be added to any of the other jars as that would cause problems for stand-alone JMeter usage.
@@ -1608,6 +1609,7 @@ run JMeter unless all the JMeter jars ar
     <deployfile stem="ApacheJMeter_jdbc"/>
     <deployfile stem="ApacheJMeter_jms"/>
     <deployfile stem="ApacheJMeter_junit"/>
+    <deployfile stem="ApacheJMeter_junit-test"/>
     <deployfile stem="ApacheJMeter_ldap"/>
     <deployfile stem="ApacheJMeter_mail"/>
     <deployfile stem="ApacheJMeter_monitors"/>

Added: jmeter/trunk/res/maven/ApacheJMeter_junit-test.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_junit-test.pom?rev=1235363&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_junit-test.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_junit-test.pom Tue Jan 24 17:26:46 2012
@@ -0,0 +1,31 @@
+<!--
+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.
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+      <groupId>org.apache.jmeter</groupId>
+      <artifactId>ApacheJMeter_parent</artifactId>
+      <version>@MAVEN.DEPLOY.VERSION@</version>
+      <relativePath>.</relativePath>
+    </parent>
+    <groupId>org.apache.jmeter</groupId>
+    <artifactId>ApacheJMeter_junit-test</artifactId>
+    <name>Apache JMeter JUnit sample test classes</name>
+</project>
\ No newline at end of file

Propchange: jmeter/trunk/res/maven/ApacheJMeter_junit-test.pom
------------------------------------------------------------------------------
    svn:eol-style = native