| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <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>com.zheng</groupId>
- <artifactId>zheng-cms</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>zheng-cms-mq</artifactId>
- <packaging>war</packaging>
- <name>zheng-cms-mq Maven Webapp</name>
- <url>http://www.zhangshuzheng.cn</url>
- <dependencies>
- <dependency>
- <groupId>com.zheng</groupId>
- <artifactId>zheng-cms-service</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <env>dev</env>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <env>test</env>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <env>prod</env>
- </properties>
- </profile>
- </profiles>
- <build>
- <finalName>cms-mq</finalName>
- <filters>
- <filter>src/main/resources/profiles/${env}.properties</filter>
- </filters>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <plugins>
- <!-- jetty插件 -->
- <plugin>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>9.3.14.v20161028</version>
- <configuration>
- <scanIntervalSeconds>3</scanIntervalSeconds>
- <webApp>
- <contextPath>/cms-mq</contextPath>
- </webApp>
- <httpConnector>
- <port>8081</port>
- </httpConnector>
- <reload>automatic</reload>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|