pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jeesite</groupId>
  7. <artifactId>jeesite-parent</artifactId>
  8. <version>4.4.1-SNAPSHOT</version>
  9. <relativePath>../parent/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>jeesite-web</artifactId>
  12. <packaging>war</packaging>
  13. <name>JeeSite Web</name>
  14. <url>http://jeesite.com</url>
  15. <inceptionYear>2013-Now</inceptionYear>
  16. <properties>
  17. <finalName>web</finalName><!-- war or jar 包的名称 -->
  18. <start-class>com.jeesite.modules.Application</start-class>
  19. <!-- environment setting -->
  20. <eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
  21. <eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
  22. <!-- docker setting -->
  23. <docker.run.port>8980:8980</docker.run.port>
  24. </properties>
  25. <dependencies>
  26. <!-- 核心模块 -->
  27. <dependency>
  28. <groupId>com.jeesite</groupId>
  29. <artifactId>jeesite-module-core</artifactId>
  30. <version>${project.parent.version}</version>
  31. </dependency>
  32. <!-- 在线文档接口 -->
  33. <dependency>
  34. <groupId>com.jeesite</groupId>
  35. <artifactId>jeesite-module-swagger</artifactId>
  36. <version>${project.parent.version}</version>
  37. </dependency>
  38. <!-- 文件管理共享(标准版)
  39. <dependency>
  40. <groupId>com.jeesite</groupId>
  41. <artifactId>jeesite-module-filemanager</artifactId>
  42. <version>${project.parent.version}</version>
  43. </dependency> -->
  44. <!-- 文件在线预览(标准版)
  45. <dependency>
  46. <groupId>com.jeesite</groupId>
  47. <artifactId>jeesite-module-filepreview</artifactId>
  48. <version>${project.parent.version}</version>
  49. </dependency> -->
  50. <!-- 内容管理模块-->
  51. <dependency>
  52. <groupId>com.jeesite</groupId>
  53. <artifactId>jeesite-module-cms</artifactId>
  54. <version>${project.parent.version}</version>
  55. </dependency>
  56. <!-- Spring Boot Tomcat
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-tomcat</artifactId>
  60. <scope>provided</scope>
  61. </dependency> -->
  62. </dependencies>
  63. <build>
  64. <finalName>${finalName}</finalName>
  65. <outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>
  66. <plugins>
  67. <!-- Spring Boot -->
  68. <plugin>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-maven-plugin</artifactId>
  71. <configuration>
  72. <includeSystemScope>true</includeSystemScope>
  73. </configuration>
  74. </plugin>
  75. <!-- war插件,war包名称不带版本号 -->
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-war-plugin</artifactId>
  79. <configuration>
  80. <warName>${finalName}</warName>
  81. </configuration>
  82. </plugin>
  83. <!-- Eclipse 插件 -->
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-eclipse-plugin</artifactId>
  87. <configuration>
  88. <downloadSources>${eclipse-plugin-download-sources}</downloadSources>
  89. <downloadJavadocs>${eclipse-plugin-download-javadocs}</downloadJavadocs>
  90. <wtpContextName>${finalName}</wtpContextName>
  91. <wtpversion>2.0</wtpversion>
  92. <jeeversion>6.0</jeeversion>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. <developers>
  98. <developer>
  99. <id>thinkgem</id>
  100. <name>WangZhen</name>
  101. <email>thinkgem at 163.com</email>
  102. <roles><role>Project lead</role></roles>
  103. <timezone>+8</timezone>
  104. </developer>
  105. </developers>
  106. <organization>
  107. <name>JeeSite</name>
  108. <url>http://jeesite.com</url>
  109. </organization>
  110. <repositories>
  111. <repository>
  112. <id>aliyun-repos</id>
  113. <url>https://maven.aliyun.com/repository/public</url>
  114. <releases><enabled>true</enabled></releases>
  115. <snapshots><enabled>false</enabled></snapshots>
  116. </repository>
  117. <repository>
  118. <id>jeesite-repos</id>
  119. <url>http://maven.jeesite.net/repository/maven-public</url>
  120. </repository>
  121. </repositories>
  122. <pluginRepositories>
  123. <pluginRepository>
  124. <id>aliyun-repos</id>
  125. <url>https://maven.aliyun.com/repository/public</url>
  126. <releases><enabled>true</enabled></releases>
  127. <snapshots><enabled>false</enabled></snapshots>
  128. </pluginRepository>
  129. <pluginRepository>
  130. <id>jeesite-repos</id>
  131. <url>http://maven.jeesite.net/repository/maven-public</url>
  132. </pluginRepository>
  133. </pluginRepositories>
  134. </project>
  135. ���������������������������������������������