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/18 04:14:39 UTC

svn commit: r1232738 - /jmeter/trunk/res/maven/

Author: sebb
Date: Wed Jan 18 03:14:38 2012
New Revision: 1232738

URL: http://svn.apache.org/viewvc?rev=1232738&view=rev
Log:
Sample POMs for Maven upload
Initial versions only

Added:
    jmeter/trunk/res/maven/
    jmeter/trunk/res/maven/ApacheJMeter.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_components.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_core.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_ftp.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_functions.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_http.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_java.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_jdbc.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_jms.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_junit.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_ldap.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_mail.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_monitor.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_parent.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_reports.pom   (with props)
    jmeter/trunk/res/maven/ApacheJMeter_tcp.pom   (with props)
    jmeter/trunk/res/maven/jorphan.pom   (with props)

Added: jmeter/trunk/res/maven/ApacheJMeter.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,29 @@
+<!--
+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>
+    <artifactId>ApacheJMeter</artifactId>
+    <name>Apache JMeter launcher</name>
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_components.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_components.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_components.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_components.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,45 @@
+<!--
+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_components</artifactId>
+    <name>Apache JMeter Components</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_core.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_core.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_core.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_core.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,40 @@
+<!--
+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_core</artifactId>
+    <name>Apache JMeter Core</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_ftp.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_ftp.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_ftp.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_ftp.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,50 @@
+<!--
+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_ftp</artifactId>
+    <name>Apache JMeter FTP</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_functions.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_functions.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_functions.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_functions.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,45 @@
+<!--
+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_functions</artifactId>
+    <name>Apache JMeter Functions</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_http.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_http.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_http.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_http.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,50 @@
+<!--
+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_http</artifactId>
+    <name>Apache JMeter HTTP</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_java.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_java.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_java.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_java.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,50 @@
+<!--
+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_java</artifactId>
+    <name>Apache JMeter Java</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_jdbc.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_jdbc.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_jdbc.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_jdbc.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,50 @@
+<!--
+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_jdbc</artifactId>
+    <name>Apache JMeter JDBC</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_jms.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_jms.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_jms.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_jms.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,50 @@
+<!--
+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_jms</artifactId>
+    <name>Apache JMeter JMS</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_junit.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_junit.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_junit.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_junit.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,44 @@
+<!--
+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>
+    <artifactId>ApacheJMeter_junit</artifactId>
+    <name>Apache JMeter jUnit</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_ldap.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_ldap.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_ldap.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_ldap.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,49 @@
+<!--
+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>
+    <artifactId>ApacheJMeter_ldap</artifactId>
+    <name>Apache JMeter LDAP</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_mail.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_mail.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_mail.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_mail.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,49 @@
+<!--
+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>
+    <artifactId>ApacheJMeter_mail</artifactId>
+    <name>Apache JMeter Mail</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_monitor.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_monitor.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_monitor.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_monitor.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,54 @@
+<!--
+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>
+    <artifactId>ApacheJMeter_monitor</artifactId>
+    <name>Apache JMeter Monitor</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_http</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_parent.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_parent.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_parent.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_parent.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,283 @@
+<!--
+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>
+    <groupId>org.apache.jmeter</groupId>
+    <artifactId>ApacheJMeter_parent</artifactId>
+    <version>@MAVEN.DEPLOY.VERSION@</version>
+    <name>Apache JMeter parent</name>
+    <packaging>pom</packaging>
+    
+    <properties>
+      <apache-bsf.version>2.4.0</apache-bsf.version>
+      <apache-jsr223-api.version>3.1</apache-jsr223-api.version>
+      <avalon-framework.version>4.1.4</avalon-framework.version>
+      <beanshell.version>2.0b5</beanshell.version>
+      <bcmail.version>1.45</bcmail.version>
+      <bcprov.version>1.45</bcprov.version>
+      <commons-codec.version>1.6</commons-codec.version>
+      <commons-collections.version>3.2.1</commons-collections.version>
+      <commons-httpclient.version>3.1</commons-httpclient.version>
+      <commons-io.version>2.1</commons-io.version>
+      <commons-jexl.version>1.1</commons-jexl.version>
+      <commons-jexl2.version>2.1.1</commons-jexl2.version>
+      <commons-lang.version>2.6</commons-lang.version>
+      <commons-logging.version>1.1.1</commons-logging.version>
+      <commons-net.version>3.0.1</commons-net.version>
+      <excalibur-datasource.version>1.1.1</excalibur-datasource.version>
+      <excalibur-instrument.version>1.0</excalibur-instrument.version>
+      <excalibur-logger.version>1.1</excalibur-logger.version>
+      <excalibur-pool.version>1.2</excalibur-pool.version>
+      <htmlparser.version>2.1</htmlparser.version>
+      <httpclient.version>4.1.2</httpclient.version>
+      <httpcore.version>4.1.4</httpcore.version>
+      <jakarta-oro.version>2.0.8</jakarta-oro.version>
+      <jcharts.version>0.7.5</jcharts.version>
+      <jdom.version>1.1.2</jdom.version>
+      <js_rhino.version>1.7R2</js_rhino.version>
+      <junit.version>4.10</junit.version>
+      <logkit.version>2.0</logkit.version>
+      <soap.version>2.3.1</soap.version>
+      <tidy.version>r938</tidy.version>
+      <xstream.version>1.3.1</xstream.version>
+      <xpp3.version>1.1.4c</xpp3.version>
+      <xalan.version>2.7.1</xalan.version>
+      <serializer.version>2.7.1</serializer.version>
+      <xerces.version>2.9.1</xerces.version>
+      <xml-apis.version>1.3.04</xml-apis.version>
+      <xmlgraphics-commons.version>1.3.1</xmlgraphics-commons.version>
+      <activation.version>1.1.1</activation.version>
+      <javamail.version>1.4.4</javamail.version>
+      <jms.version>1.1.1</jms.version>
+      <velocity.version>1.7</velocity.version>
+    </properties>
+
+    <dependencies>
+      <dependency>
+        <groupId>bsf</groupId>
+        <artifactId>bsf</artifactId>
+        <version>${apache-bsf.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.bsf</groupId>
+        <artifactId>bsf-api</artifactId>
+        <version>${apache-jsr223-api.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>avalon-framework</groupId>
+        <artifactId>avalon-framework</artifactId>
+        <version>${avalon-framework.version}</version>
+      </dependency>
+      <!-- bsh-2.0b5.jar -->
+      <dependency>
+        <groupId>org.bouncycastle</groupId>
+        <artifactId>bcmail-jdk15</artifactId>
+        <version>$(bcmail.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.bouncycastle</groupId>
+        <artifactId>bcprov-jdk15</artifactId>
+        <version>${bcprov.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-codec</groupId>
+        <artifactId>commons-codec</artifactId>
+        <version>${commons-codec.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-collections</groupId>
+        <artifactId>commons-collections</artifactId>
+        <version>${commons-collections.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-httpclient</groupId>
+        <artifactId>commons-httpclient</artifactId>
+        <version>${commons-httpclient.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-io</groupId>
+        <artifactId>commons-io</artifactId>
+        <version>${commons-io.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-jexl</groupId>
+        <artifactId>commons-jexl</artifactId>
+        <version>${commons-jexl.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-jexl</artifactId>
+        <version>${commons-jexl2.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-lang</groupId>
+        <artifactId>commons-lang</artifactId>
+        <version>${commons-lang.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>${commons-logging.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-net</groupId>
+        <artifactId>commons-net</artifactId>
+        <version>${commons-net.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>excalibur-datasource</groupId>
+        <artifactId>excalibur-datasource</artifactId>
+        <version>${excalibur-datasource.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>excalibur-instrument</groupId>
+        <artifactId>excalibur-instrument</artifactId>
+        <version>${excalibur-instrument.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>excalibur-logger</groupId>
+        <artifactId>excalibur-logger</artifactId>
+        <version>${excalibur-logger.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>excalibur-pool</groupId>
+        <artifactId>excalibur-pool</artifactId>
+        <version>${excalibur-pool.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.htmlparser</groupId>
+        <artifactId>htmllexer</artifactId>
+        <version>${htmlparser.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.htmlparser</groupId>
+        <artifactId>htmlparser</artifactId>
+        <version>${htmlparser.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.httpcomponents</groupId>
+        <artifactId>httpclient</artifactId>
+        <version>${httpclient.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.httpcomponents</groupId>
+        <artifactId>httpmime</artifactId>
+        <version>${httpclient.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.httpcomponents</groupId>
+        <artifactId>httpcore</artifactId>
+        <version>${httpcore.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>oro</groupId>
+        <artifactId>oro</artifactId>
+        <version>${jakarta-oro.version}</version>
+      </dependency>
+      <!-- jCharts-0.7.5.jar not in repo? -->
+      <dependency>
+        <groupId>org.jdom</groupId>
+        <artifactId>jdom</artifactId>
+        <version>${jdom.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>rhino</groupId>
+        <artifactId>js</artifactId>
+        <version>${js_rhino.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${junit.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>logkit</groupId>
+        <artifactId>logkit</artifactId>
+        <version>${logkit.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>soap</groupId>
+        <artifactId>soap</artifactId>
+        <version>${soap.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>net.sf.jtidy</groupId>
+        <artifactId>jtidy</artifactId>
+        <version>${tidy.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.thoughtworks.xstream</groupId>
+        <artifactId>xstream</artifactId>
+        <version>${xstream.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>xpp3</groupId>
+        <artifactId>xpp3_min</artifactId>
+        <version>${xpp3.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>xalan</groupId>
+        <artifactId>xalan</artifactId>
+        <version>${xalan.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>xalan</groupId>
+        <artifactId>serializer</artifactId>
+        <version>${serializer.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>xerces</groupId>
+        <artifactId>xercesImpl</artifactId>
+        <version>${xerces.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>xml-apis</groupId>
+        <artifactId>xml-apis</artifactId>
+        <version>${xml-apis.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.xmlgraphics</groupId>
+        <artifactId>xmlgraphics-commons</artifactId>
+        <version>${xmlgraphics-commons.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.activation</groupId>
+        <artifactId>activation</artifactId>
+        <version>${activation.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.mail</groupId>
+        <artifactId>mail</artifactId>
+        <version>${javamail.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-jms_1.1_spec</artifactId>
+        <version>${jms.version}</version>
+      </dependency>
+      <!-- Docs only; not needed for source or binary archives 
+      <dependency>
+        <groupId>org.apache.velocity</groupId>
+        <artifactId>velocity</artifactId>
+        <version>${velocity.version}</version>
+      </dependency>
+       -->
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_reports.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_reports.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_reports.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_reports.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,49 @@
+<!--
+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>
+    <artifactId>ApacheJMeter_reports</artifactId>
+    <name>Apache JMeter Reports</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/ApacheJMeter_tcp.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/ApacheJMeter_tcp.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/ApacheJMeter_tcp.pom (added)
+++ jmeter/trunk/res/maven/ApacheJMeter_tcp.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,49 @@
+<!--
+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>
+    <artifactId>ApacheJMeter_tcp</artifactId>
+    <name>Apache JMeter TCP</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jmeter</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>@MAVEN.DEPLOY.VERSION@</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

Added: jmeter/trunk/res/maven/jorphan.pom
URL: http://svn.apache.org/viewvc/jmeter/trunk/res/maven/jorphan.pom?rev=1232738&view=auto
==============================================================================
--- jmeter/trunk/res/maven/jorphan.pom (added)
+++ jmeter/trunk/res/maven/jorphan.pom Wed Jan 18 03:14:38 2012
@@ -0,0 +1,32 @@
+<!--
+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>jorphan</artifactId>
+      <version>@MAVEN.DEPLOY.VERSION@</version>
+      <relativePath>.</relativePath>
+    </parent>
+    <groupId>org.apache.jmeter</groupId>
+    <artifactId>jorphan</artifactId>
+    <version>@MAVEN.DEPLOY.VERSION@</version>
+    <name>Apache JMeter jorphan library</name>
+
+</project>
\ No newline at end of file

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