Author: tabish
Date: Thu Feb 19 22:01:00 2009
New Revision: 746017
URL: http://svn.apache.org/viewvc?rev=746017&view=rev
Log:
Moved the OpenWire Generator code into its own project to make it easier to
maintain and add other projects as needed to the activemq-cpp domain.
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/pom.xml (with
props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/test/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/test/java/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/activemq-cpp-openwire-generator-2.0.jar
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppClassesGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppGeneratorTask.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppHeadersGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMakefileGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator$1.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingHeadersGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingClassesGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingHeadersGenerator.class
(with props)
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/pom.properties
(with props)
Added: activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/pom.xml?rev=746017&view=auto
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/pom.xml (added)
+++ activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/pom.xml Thu Feb
19 22:01:00 2009
@@ -0,0 +1,85 @@
+<?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 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">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.activemq</groupId>
+ <artifactId>activemq-cpp-parent</artifactId>
+ <version>3.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>activemq-cpp-openwire-generator</artifactId>
+ <packaging>jar</packaging>
+ <name>ActiveMQ-CPP Openwire Generator</name>
+ <description>The ActiveMQ-CPP Openwire Command Generator</description>
+ <version>2.0</version>
+
+ <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.5</version>
+ <scope>system</scope>
+ <!-- Only a JDK of 1.5.0 B11 or greater seems to work. -->
+ <systemPath>/opt/local/jdk1.5.0_16/lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Propchange: activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/activemq-cpp-openwire-generator-2.0.jar
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/activemq-cpp-openwire-generator-2.0.jar?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/activemq-cpp-openwire-generator-2.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppClassesGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppClassesGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppClassesGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppGeneratorTask.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppGeneratorTask.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppGeneratorTask.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppHeadersGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppHeadersGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppHeadersGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMakefileGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMakefileGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMakefileGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator$1.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator%241.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator$1.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingClassesGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingHeadersGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingHeadersGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppMarshallingHeadersGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingClassesGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingClassesGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingClassesGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingHeadersGenerator.class
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingHeadersGenerator.class?rev=746017&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/classes/org/apache/activemq/openwire/tool/AmqCppTestMarshallingHeadersGenerator.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/pom.properties
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/pom.properties?rev=746017&view=auto
==============================================================================
---
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/pom.properties
(added)
+++
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/pom.properties
Thu Feb 19 22:01:00 2009
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Thu Feb 19 16:54:43 GMT-05:00 2009
+version=2.0
+groupId=org.apache.activemq
+artifactId=activemq-cpp-openwire-generator
Propchange:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/target/maven-archiver/pom.properties
------------------------------------------------------------------------------
svn:eol-style = native