2017-11-03 22:26:39 -04:00
|
|
|
<?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.
|
|
|
|
-->
|
2018-03-12 12:46:16 -04:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
2017-11-03 22:26:39 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq.examples.modules</groupId>
|
|
|
|
<artifactId>broker-modules</artifactId>
|
2020-07-09 12:49:08 -04:00
|
|
|
<version>2.15.0-SNAPSHOT</version>
|
2017-11-03 22:26:39 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>artemis-tomcat-jndi-resources-sample</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>Artemis Tomcat JNDI Resources Example</name>
|
|
|
|
|
|
|
|
<properties>
|
2018-02-15 13:56:42 -05:00
|
|
|
<activemq.basedir>${project.basedir}/../../../..</activemq.basedir>
|
2017-11-03 22:26:39 -04:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<projectBaseUri>${project.baseUri}</projectBaseUri>
|
|
|
|
|
|
|
|
<servlet-api.version>3.0-alpha-1</servlet-api.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Spring Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jms</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jms-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>${servlet-api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.tomcat.maven</groupId>
|
|
|
|
<artifactId>tomcat7-maven-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<contextFile>${project.basedir}\src\tomcat7-maven-plugin\resources\context.xml</contextFile>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>tomcat-war-exec</id>
|
|
|
|
<goals>
|
|
|
|
<goal>exec-war</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
|
|
|
<warRunDependencies>
|
|
|
|
<warRunDependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq.examples.modules</groupId>
|
|
|
|
<artifactId>artemis-tomcat-jndi-resources-sample</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
</warRunDependency>
|
|
|
|
</warRunDependencies>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
<!--<configuration>-->
|
|
|
|
<!--<port>9090</port>-->
|
|
|
|
<!--<path>/</path>-->
|
|
|
|
<!--</configuration>-->
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-06-11 12:49:39 -04:00
|
|
|
</project>
|