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 2012/01/14 23:27:31 UTC

svn commit: r1231592 - in /jmeter/trunk/src: monitor/pom.xml protocol/pom.xml

Author: pmouawad
Date: Sat Jan 14 22:27:31 2012
New Revision: 1231592

URL: http://svn.apache.org/viewvc?rev=1231592&view=rev
Log:
Bug 49753 - Please publish jMeter artifacts on Maven central repository
Modified js version to 1.7R2

Added:
    jmeter/trunk/src/monitor/pom.xml   (with props)
    jmeter/trunk/src/protocol/pom.xml   (with props)

Added: jmeter/trunk/src/monitor/pom.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/monitor/pom.xml?rev=1231592&view=auto
==============================================================================
--- jmeter/trunk/src/monitor/pom.xml (added)
+++ jmeter/trunk/src/monitor/pom.xml Sat Jan 14 22:27:31 2012
@@ -0,0 +1,58 @@
+<!--
+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">
+    <parent>
+        <artifactId>ApacheJMeter_parent</artifactId>
+        <groupId>org.apache.jmeter</groupId>
+        <version>SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>ApacheJMeter_monitors</artifactId>
+    <name>Apache JMeter Monitors</name>
+
+    <build>
+        <directory>../../build/maven/monitor</directory>
+        <sourceDirectory>.</sourceDirectory>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>jorphan</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>ApacheJMeter_core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>ApacheJMeter_components</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>ApacheJMeter_http</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

Propchange: jmeter/trunk/src/monitor/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: jmeter/trunk/src/protocol/pom.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/pom.xml?rev=1231592&view=auto
==============================================================================
--- jmeter/trunk/src/protocol/pom.xml (added)
+++ jmeter/trunk/src/protocol/pom.xml Sat Jan 14 22:27:31 2012
@@ -0,0 +1,47 @@
+<!--
+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">
+    <parent>
+        <artifactId>ApacheJMeter_parent</artifactId>
+        <groupId>org.apache.jmeter</groupId>
+        <version>SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>ApacheJMeter_protocol</artifactId>
+    <name>Apache JMeter Protocol</name>
+    <packaging>pom</packaging>
+
+    <modules>
+        <module>ftp</module>
+        <module>http</module>
+        <module>java</module>
+        <module>jdbc</module>
+        <module>jms</module>
+        <module>ldap</module>
+        <module>mail</module>
+        <module>tcp</module>
+    </modules>
+
+    <build>
+        <directory>../../../build/maven/protocol</directory>
+        <sourceDirectory>.</sourceDirectory>
+    </build>
+
+</project>
\ No newline at end of file

Propchange: jmeter/trunk/src/protocol/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain