`
wolfcame
  • 浏览: 79266 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

activemq的maven依赖

阅读更多
<!--
    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">

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.activemq.tooling</groupId>
        <artifactId>activemq-tooling</artifactId>
        <version>5.4.2</version>
	</parent>

    <artifactId>maven-activemq-perf-plugin</artifactId>
    <packaging>maven-plugin</packaging>
    <name>ActiveMQ :: Performance Test Plugin</name>

    <dependencies>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-console</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activeio-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-jms_1.1_spec</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

分享到:
评论

相关推荐

    activemq在maven工程

    1. **Maven依赖添加** 在`pom.xml`文件中,我们需要添加ActiveMQ的相关依赖,以确保项目能够正确引用到ActiveMQ的类库。具体依赖如下: ```xml &lt;groupId&gt;org.apache.activemq &lt;artifactId&gt;activemq-client ...

    active MQ maven POM方式

    总结,学习ActiveMQ Maven POM方式,主要涉及以下几个步骤:添加Maven依赖、理解ActiveMQ工作原理、创建连接工厂、发送和接收消息。通过实际操作和调试mq-demo02项目,初学者可以快速掌握ActiveMQ的基本使用,并为...

    spring整合activemq的maven工程

    在Maven工程中,我们首先需要在`pom.xml`文件中添加相关的依赖,包括Spring的`spring-context`、`spring-jms`和ActiveMQ的客户端库。例如: ```xml &lt;groupId&gt;org.springframework &lt;artifactId&gt;spring-context ...

    Spring+ActiveMQ实现,基于Maven

    2. **添加依赖**:在Maven的pom.xml文件中添加Spring和ActiveMQ的依赖项。 3. **配置Spring**:在Spring配置文件中定义JMS连接工厂、目的地(Topic或Queue)、消息生产者和消费者。 4. **编写生产者代码**:创建一个...

    Spring + ActiveMq + maven demo

    在IDE中新建一个Maven项目,添加Spring和ActiveMQ相关的依赖。在`pom.xml`文件中,你需要包含以下依赖: ```xml &lt;groupId&gt;org.springframework &lt;artifactId&gt;spring-context &lt;version&gt;5.x.x.RELEASE ...

    ActiveMQ与spring集成实例之使用Maven构建

    - 使用Maven的依赖管理功能,在`pom.xml`文件中添加ActiveMQ和Spring的相关依赖。 - 编写生产者代码,创建并发送消息到ActiveMQ服务器。 - 编写消费者代码,从ActiveMQ服务器接收消息并处理。 - 运行Maven构建,...

    基于Maven的ActiveMQ的简单实例

    总结,基于Maven的ActiveMQ简单实例展示了如何利用Maven管理依赖,以及如何使用Java API与ActiveMQ交互进行消息发送和接收。这个实例可以帮助初学者快速理解和入门ActiveMQ的基本用法,为进一步探索分布式系统中的...

    activeMQ、Maven、memcached、mongoDB、Nginx学习材料

    本学习材料涵盖了五个核心领域:ActiveMQ、Maven、Memcached、MongoDB以及Nginx,这些都是构建高效、可扩展系统的重要工具。以下是对这些技术的详细介绍: 1. **ActiveMQ**:ActiveMQ是Apache软件基金会的一个开源...

    Spring与ActiveMQ完整实例源码下载 Maven 版.zip

    1. **pom.xml**:Maven项目的配置文件,包含了Spring和ActiveMQ的相关依赖,确保项目可以正确构建和运行。 2. **Spring配置文件**:这里通常会有`applicationContext.xml`,配置了ActiveMQ的ConnectionFactory和...

    MavenWildflyActivemq:演示Wildfly maven插件,Wildfly的Cargo插件和Activemq maven插件的示例项目

    "MavenWildflyActivemq"是一个项目,它的主要目的是展示如何使用Maven,一个流行的Java构建工具,来与Wildfly应用程序服务器和ActiveMQ消息中间件集成。这个项目通过Maven插件来简化Wildfly的管理和ActiveMQ的配置。...

    activemq-example sping maven

    总的来说,这个压缩包中的内容为开发者提供了一个实践平台,通过实际操作学习如何利用ActiveMQ进行消息传递,同时利用Spring进行依赖注入和管理,以及Maven的项目构建流程。通过这三个示例,开发者可以逐步理解...

    activemq的queue队列模式的maven,spring的demo

    在本示例中,你需要在`pom.xml`文件中配置Maven依赖,引入Spring和ActiveMQ的相关库。例如: ```xml &lt;groupId&gt;org.springframework &lt;artifactId&gt;spring-context &lt;version&gt;5.x.y.RELEASE &lt;groupId&gt;org....

    maven-spring-activemq

    总的来说,"maven-spring-activemq"项目展示了如何在Spring应用中利用Maven管理依赖,结合ActiveMQ实现消息传递,以提高系统的异步处理能力和可扩展性。通过理解和实践这个案例,开发者可以更好地理解Spring的JMS...

    activemq-xmpp-5.8.0.jar

    标签:activemq-xmpp-5.8.0.jar,activemq,xmpp,5.8.0,jar包下载,依赖包

    activemq的topic队列模式的maven,spring的demo

    首先,我们需要在Maven项目中添加ActiveMQ和Spring的相关依赖。在`pom.xml`文件中,你可以看到类似以下的配置: ```xml &lt;groupId&gt;org.apache.activemq &lt;artifactId&gt;activemq-client &lt;version&gt;5.16.x ...

    基于Maven的Spring与ActiveMQ整合的简单实例

    在Spring与ActiveMQ整合的项目中,Maven可以帮助我们管理各种库的依赖关系。首先,我们需要在`pom.xml`文件中添加Maven的配置,包括项目的基本信息和所需的依赖。例如,我们需要添加Spring和ActiveMQ的相关依赖: `...

    Maven Spring MQ集成

    四、Maven配置ActiveMQ依赖 在`pom.xml`文件中,我们需要添加以下ActiveMQ和Spring JMS的相关依赖: ```xml &lt;groupId&gt;org.apache.activemq &lt;artifactId&gt;activemq-client &lt;version&gt;5.x.y &lt;groupId&gt;org....

    activemq rcp测试例子 不包含依赖库

    标题中的“ActiveMQ RCP测试例子 不包含依赖库”指的是一个使用ActiveMQ远程过程调用(RPC)功能的示例项目,但这个压缩包里并未包含必要的依赖库。ActiveMQ是Apache软件基金会的一个开源项目,它是一个强大的消息...

    activeMQ+spring整合

    这可以通过在Maven的pom.xml文件中添加ActiveMQ的依赖来实现。然后,配置Spring的XML配置文件,声明一个JMS模板和一个ActiveMQ的连接工厂。这样,Spring就能通过JMS模板发送和接收消息,而连接工厂则负责与ActiveMQ...

    Spring和ActiveMQ整合的完整实例

    1. **配置ActiveMQ**:首先,我们需要在项目中添加ActiveMQ的依赖,可以通过Maven或Gradle实现。然后,配置ActiveMQ服务器,例如,可以在application.xml或application.properties中设置连接参数,如URL、用户名和...

Global site tag (gtag.js) - Google Analytics