You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ce...@apache.org on 2013/02/01 20:06:01 UTC

svn commit: r1441584 - /activemq/sandbox/activemq-perftest/pom.xml

Author: ceposta
Date: Fri Feb  1 19:06:00 2013
New Revision: 1441584

URL: http://svn.apache.org/viewvc?rev=1441584&view=rev
Log:
Updated to use 5.8-SNAPSHOT and added snapshot repos. 

Modified:
    activemq/sandbox/activemq-perftest/pom.xml

Modified: activemq/sandbox/activemq-perftest/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-perftest/pom.xml?rev=1441584&r1=1441583&r2=1441584&view=diff
==============================================================================
--- activemq/sandbox/activemq-perftest/pom.xml (original)
+++ activemq/sandbox/activemq-perftest/pom.xml Fri Feb  1 19:06:00 2013
@@ -29,31 +29,60 @@
   <packaging>jar</packaging>
   <name>ActiveMQ :: Performance Test</name>
   <description>Performance Testing Framework for ActiveMQ</description>
-
+    <properties>
+		<!-- update this when 5.8 is final -->
+        <activemq-version>5.8-SNAPSHOT</activemq-version>
+    </properties>
   <build>
     <plugins>
-      <!-- As of v5.8.0 the plugin names have changed.
+      <!-- As of v5.8.0 the plugin names have changed. -->
       <plugin>
         <groupId>org.apache.activemq.tooling</groupId>
         <artifactId>activemq-perf-maven-plugin</artifactId>
-        <version>5.8.0</version>
+        <version>${activemq-version}</version>
       </plugin>
       <plugin>
         <groupId>org.apache.activemq.tooling</groupId>
         <artifactId>activemq-memtest-maven-plugin</artifactId>
-        <version>5.8.0</version>
-      </plugin>
-      -->
-      <plugin>
-        <groupId>org.apache.activemq.tooling</groupId>
-        <artifactId>maven-activemq-perf-plugin</artifactId>
-        <version>5.7.0</version>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.activemq.tooling</groupId>
-        <artifactId>maven-activemq-memtest-plugin</artifactId>
-        <version>5.7.0</version>
+        <version>${activemq-version}</version>
       </plugin>
     </plugins>
   </build>
+
+  <pluginRepositories>
+        <pluginRepository>
+          <id>apache-plugins-snapshots</id>
+          <name>Apache Snapshots</name>
+          <releases>
+            <enabled>false</enabled>
+            <updatePolicy>always</updatePolicy>
+            <checksumPolicy>warn</checksumPolicy>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+            <updatePolicy>never</updatePolicy>
+            <checksumPolicy>fail</checksumPolicy>
+          </snapshots>
+          <url>http://repository.apache.org/snapshots/</url>
+          <layout>default</layout>
+        </pluginRepository>
+  </pluginRepositories>
+  <repositories>
+        <repository>
+          <id>apache-snapshots</id>
+          <name>Apache Snapshots</name>
+          <releases>
+            <enabled>false</enabled>
+            <updatePolicy>always</updatePolicy>
+            <checksumPolicy>warn</checksumPolicy>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+            <updatePolicy>never</updatePolicy>
+            <checksumPolicy>fail</checksumPolicy>
+          </snapshots>
+          <url>http://repository.apache.org/snapshots/</url>
+          <layout>default</layout>
+        </repository>
+  </repositories>
 </project>