mirror of https://github.com/apache/activemq.git
Merge pull request #365 from jgallimore/master-AMQ-7149
AMQ-7149 Remove dependency activemq-http and activemq-stomp
This commit is contained in:
commit
db6098c53a
|
@ -80,6 +80,12 @@
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.thoughtworks.xstream</groupId>
|
||||||
|
<artifactId>xstream</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- =============================== -->
|
<!-- =============================== -->
|
||||||
<!-- Testing Dependencies -->
|
<!-- Testing Dependencies -->
|
||||||
<!-- =============================== -->
|
<!-- =============================== -->
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.transport.stomp;
|
package org.apache.activemq.util;
|
||||||
|
|
||||||
import com.thoughtworks.xstream.XStream;
|
import com.thoughtworks.xstream.XStream;
|
||||||
import com.thoughtworks.xstream.security.AnyTypePermission;
|
import com.thoughtworks.xstream.security.AnyTypePermission;
|
|
@ -46,6 +46,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>${project.groupId}</groupId>
|
<groupId>${project.groupId}</groupId>
|
||||||
<artifactId>activemq-stomp</artifactId>
|
<artifactId>activemq-stomp</artifactId>
|
||||||
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>${project.groupId}</groupId>
|
<groupId>${project.groupId}</groupId>
|
||||||
|
|
|
@ -25,13 +25,12 @@ import com.thoughtworks.xstream.converters.UnmarshallingContext;
|
||||||
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
|
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
|
||||||
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
|
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
|
||||||
|
|
||||||
import org.apache.activemq.command.ConsumerInfo;
|
|
||||||
import org.apache.activemq.command.MarshallAware;
|
import org.apache.activemq.command.MarshallAware;
|
||||||
import org.apache.activemq.command.MessageDispatch;
|
import org.apache.activemq.command.MessageDispatch;
|
||||||
import org.apache.activemq.command.TransientInitializer;
|
import org.apache.activemq.command.TransientInitializer;
|
||||||
import org.apache.activemq.transport.stomp.XStreamSupport;
|
|
||||||
import org.apache.activemq.transport.util.TextWireFormat;
|
import org.apache.activemq.transport.util.TextWireFormat;
|
||||||
import org.apache.activemq.util.ByteSequence;
|
import org.apache.activemq.util.ByteSequence;
|
||||||
|
import org.apache.activemq.util.XStreamSupport;
|
||||||
import org.apache.activemq.wireformat.WireFormat;
|
import org.apache.activemq.wireformat.WireFormat;
|
||||||
|
|
||||||
import com.thoughtworks.xstream.XStream;
|
import com.thoughtworks.xstream.XStream;
|
||||||
|
|
|
@ -39,6 +39,7 @@ import org.apache.activemq.command.DataStructure;
|
||||||
import org.apache.activemq.transport.stomp.Stomp.Headers;
|
import org.apache.activemq.transport.stomp.Stomp.Headers;
|
||||||
import org.apache.activemq.transport.stomp.Stomp.Responses;
|
import org.apache.activemq.transport.stomp.Stomp.Responses;
|
||||||
import org.apache.activemq.transport.stomp.Stomp.Transformations;
|
import org.apache.activemq.transport.stomp.Stomp.Transformations;
|
||||||
|
import org.apache.activemq.util.XStreamSupport;
|
||||||
import org.codehaus.jettison.mapped.Configuration;
|
import org.codehaus.jettison.mapped.Configuration;
|
||||||
import org.fusesource.hawtbuf.UTF8Buffer;
|
import org.fusesource.hawtbuf.UTF8Buffer;
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.apache.activemq.broker.BrokerContext;
|
||||||
import org.apache.activemq.transport.stomp.SamplePojo;
|
import org.apache.activemq.transport.stomp.SamplePojo;
|
||||||
|
|
||||||
import com.thoughtworks.xstream.XStream;
|
import com.thoughtworks.xstream.XStream;
|
||||||
import org.apache.activemq.transport.stomp.XStreamSupport;
|
import org.apache.activemq.util.XStreamSupport;
|
||||||
|
|
||||||
public class XStreamBrokerContext implements BrokerContext {
|
public class XStreamBrokerContext implements BrokerContext {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue