[关闭]
@wxf 2017-06-03T13:42:42.000000Z 字数 1055 阅读 722

mmall-manage项目的pom.xml

其他


  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>system-parent</artifactId>
  5. <groupId>com.wxf</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. <relativePath>../system-parent/pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>mmall-manager</artifactId>
  11. <packaging>pom</packaging>
  12. <name>mmall-manager</name>
  13. <url>http://maven.apache.org</url>
  14. <modules>
  15. <module>mmall-manager-mapper</module>
  16. <module>mmall-manager-service</module>
  17. <module>mmall-manager-web</module>
  18. </modules>
  19. <!-- 依赖管理 -->
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.wxf</groupId>
  23. <artifactId>system-utils</artifactId>
  24. <version>1.0-SNAPSHOT</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <!-- 配置插件 -->
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.tomcat.maven</groupId>
  32. <artifactId>tomcat7-maven-plugin</artifactId>
  33. <configuration>
  34. <port>8080</port>
  35. <path>/</path>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注