| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>7</version> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.activemq</groupId> |
| <artifactId>nms-activemq-openwire-generator</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <name>NMS.ActiveMQ Openwire Protocol Generator</name> |
| <description>Tool used to create the NMS.ActiveMQ OpenWire Commands and Marshallers.</description> |
| <inceptionYear>2009</inceptionYear> |
| <prerequisites> |
| <maven>3.0.4</maven> |
| </prerequisites> |
| |
| <organization> |
| <name>Apache Software Foundation</name> |
| <url>http://www.apache.org/</url> |
| </organization> |
| |
| <url>http://activemq.apache.org/cms</url> |
| |
| <licenses> |
| <license> |
| <name>The Apache Software License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <mailingLists> |
| <mailingList> |
| <name>Development List</name> |
| <subscribe>dev-subscribe@activemq.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@activemq.apache.org</unsubscribe> |
| <post>dev@activemq.apache.org</post> |
| </mailingList> |
| </mailingLists> |
| |
| <properties> |
| <activemq-version>5.9-SNAPSHOT</activemq-version> |
| <projectName>Apache NMS.ActiveMQ</projectName> |
| <annogen-version>0.1.0</annogen-version> |
| <ant-version>1.6.2</ant-version> |
| <xstream-version>1.4.2</xstream-version> |
| <activemq-core-dir>${ACTIVEMQ_SRC_HOME}/activemq-client/</activemq-core-dir> |
| <nms-activemq-dir>${NMS_ACTIVEMQ_HOME}</nms-activemq-dir> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.activemq</groupId> |
| <artifactId>activemq-openwire-generator</artifactId> |
| <version>${activemq-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.activemq</groupId> |
| <artifactId>activemq-client</artifactId> |
| <version>${activemq-version}</version> |
| </dependency> |
| </dependencies> |
| |
| <distributionManagement> |
| <repository> |
| <id>release.apache.org</id> |
| <name>ActiveMQ NMS Release Repository</name> |
| <url>file:///home/tabish/dev/maven2/repo/release</url> |
| </repository> |
| <snapshotRepository> |
| <id>snapshots.apache.org</id> |
| <name>ActiveMQ NMS Snapshots Repository</name> |
| <url>file:///home/tabish/dev/maven2/repo/snapshots</url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| <scm> |
| <connection>scm:svn:https://svn.apache.org/repos/asf/activemq/activemq-dotnet/Apache.NMS.ActiveMQ.OpenWire.Tool</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/activemq/activemq-dotnet/Apache.NMS.ActiveMQ.OpenWire.Tool</developerConnection> |
| <url>http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ.OpenWire.Tool</url> |
| </scm> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>rat-maven-plugin</artifactId> |
| <version>1.0-alpha-3</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.5</source> |
| <target>1.5</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <configuration> |
| <tasks> |
| <echo>Running OpenWire Generator</echo> |
| <taskdef name="generate" classname="org.apache.activemq.nms.openwire.tool.AmqCSharpGeneratorTask" classpathref="maven.compile.classpath" /> |
| <generate maxVersion="9" source="${activemq-core-dir}" target="${nms-activemq-dir}" /> |
| </tasks> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |