Author: tabish
Date: Wed Apr 25 07:33:05 2007
New Revision: 532366
URL: http://svn.apache.org/viewvc?view=rev&rev=532366
Log:
https://issues.apache.org/activemq/browse/AMQCPP-110
Updated pom to build our generator.
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/pom.xml
Modified: activemq/activemq-cpp/trunk/activemq-cpp/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/pom.xml?view=diff&rev=532366&r1=532365&r2=532366
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/pom.xml (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/pom.xml Wed Apr 25 07:33:05 2007
@@ -16,16 +16,103 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<project>
- <parent>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-parent</artifactId>
- <version>4.2-SNAPSHOT</version>
- </parent>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0">
+ <groupId>org.apache.activemq</groupId>
<modelVersion>4.0.0</modelVersion>
- <artifactId>activemq-cpp</artifactId>
- <packaging>pom</packaging>
+ <artifactId>activemqcpp-openwire-generator</artifactId>
+ <packaging>jar</packaging>
+ <name>ActiveMQ-CPP Openwire Generator</name>
+ <version>1.0</version>
+
+ <organization>
+ <name>Apache Software Foundation</name>
+ <url>http://www.apache.org/</url>
+ </organization>
+
+ <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>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <post>[EMAIL PROTECTED]</post>
+ </mailingList>
+ </mailingLists>
+
+ <repositories>
+ <repository>
+ <id>apache.incubating.releases</id>
+ <name>Apache Incubating Release Distribution Repository</name>
+ <url>http://people.apache.org/repo/m2-incubating-repository</url>
+ </repository>
+ <repository>
+ <id>apache.snapshots</id>
+ <name>Apache Development Snapshot Repository</name>
+ <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache.incubating.releases</id>
+ <name>Apache Incubating Release Distribution Repository</name>
+ <url>http://people.apache.org/repo/m2-incubating-repository</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>Apache Development Snapshot Repository</name>
+ <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <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-core</artifactId>
+ <version>${activemq-version}</version>
+ </dependency>
+ </dependencies>
+
+ <profiles>
+ <profile>
+ <id>default-tools.jar</id>
+ <activation>
+ <property>
+ <name>java.vendor</name>
+ <value>Sun Microsystems Inc.</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.4.2</version>
+ <scope>system</scope>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
<build>
<plugins>
@@ -42,8 +129,8 @@
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
- <artifactId>activemq-openwire-generator</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <artifactId>activemqcpp-openwire-generator</artifactId>
+ <version>1.0</version>
</dependency>
</dependencies>
</plugin>
@@ -51,6 +138,7 @@
</build>
<properties>
+ <activemq-version>4.1.1</activemq-version>
<activemq-core-dir>../activemq-trunk/activemq-core</activemq-core-dir>
</properties>