You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2007/10/29 20:49:30 UTC

svn commit: r589827 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/pom.xml

Author: chirino
Date: Mon Oct 29 12:49:29 2007
New Revision: 589827

URL: http://svn.apache.org/viewvc?rev=589827&view=rev
Log:
Adding a maven pom that can generate the openwire stuff

Added:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/pom.xml

Added: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/pom.xml?rev=589827&view=auto
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/pom.xml (added)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/pom.xml Mon Oct 29 12:49:29 2007
@@ -0,0 +1,60 @@
+<?xml version="1.0"?>
+<!--
+    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>  
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.activemq.nms</groupId>
+  <artifactId>Apache.NMS.ActiveMQ</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <configuration>
+          <tasks>
+            <taskdef name="generate" classname="org.apache.activemq.openwire.tool.CSharpGeneratorTask"/>
+            <generate version="2" source="${activemq-core-dir}" target="${basedir}"/>
+          </tasks>
+        </configuration>
+        <executions>
+          <execution>
+            <id>generate-openwire</id>
+            <phase>compile</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>        
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-openwire-generator</artifactId>
+            <version>5.0-SNAPSHOT</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <properties>
+    <activemq-core-dir>../activemq-trunk/activemq-core</activemq-core-dir>
+  </properties>
+</project>