pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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>5.2.0-SNAPSHOT</version>
  9. <relativePath>../parent/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>jeesite-web</artifactId>
  12. <packaging>jar</packaging>
  13. <description>Web 服务,也可为分离端提供接口服务</description>
  14. <name>JeeSite Web</name>
  15. <url>http://jeesite.com</url>
  16. <inceptionYear>2013-Now</inceptionYear>
  17. <properties>
  18. <finalName>web-bjfl</finalName><!-- war or jar 包的名称 -->
  19. <start-class>com.jeesite.modules.Application</start-class>
  20. <!-- environment setting -->
  21. <eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
  22. <eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
  23. <!-- docker setting -->
  24. <docker.run.port>8980:8980</docker.run.port>
  25. </properties>
  26. <dependencies>
  27. <!-- 核心模块 -->
  28. <dependency>
  29. <groupId>com.jeesite</groupId>
  30. <artifactId>jeesite-module-core</artifactId>
  31. <version>${project.parent.version}</version>
  32. </dependency>
  33. <!--在线文档接口 -->
  34. <dependency>
  35. <groupId>com.jeesite</groupId>
  36. <artifactId>jeesite-module-swagger</artifactId>
  37. <version>${project.parent.version}</version>
  38. </dependency>
  39. <!--api-->
  40. <dependency>
  41. <groupId>com.jeesite</groupId>
  42. <artifactId>jeesite-module-bjflapi</artifactId>
  43. <version>${project.parent.version}</version>
  44. </dependency>
  45. <!--基础数据-->
  46. <!--<dependency>
  47. <groupId>com.jeesite</groupId>
  48. <artifactId>bjflApi</artifactId>
  49. <version>${project.parent.version}</version>
  50. </dependency>-->
  51. <!--&lt;!&ndash;报告管理&ndash;&gt;
  52. <dependency>
  53. <groupId>com.jeesite</groupId>
  54. <artifactId>jeesite-module-report</artifactId>
  55. <version>${project.parent.version}</version>
  56. </dependency>-->
  57. <!-- 内容管理模块 -->
  58. <!--<dependency>
  59. <groupId>com.jeesite</groupId>
  60. <artifactId>jeesite-module-cms</artifactId>
  61. <version>${project.parent.version}</version>
  62. </dependency>
  63. &lt;!&ndash; 移动端模块 &ndash;&gt;
  64. <dependency>
  65. <groupId>com.jeesite</groupId>
  66. <artifactId>jeesite-module-app</artifactId>
  67. <version>${project.parent.version}</version>
  68. </dependency>-->
  69. <!-- 文件管理共享(标准版)
  70. <dependency>
  71. <groupId>com.jeesite</groupId>
  72. <artifactId>jeesite-module-filemanager</artifactId>
  73. <version>${project.parent.version}</version>
  74. </dependency> -->
  75. <!-- 文件在线预览(标准版)
  76. <dependency>
  77. <groupId>com.jeesite</groupId>
  78. <artifactId>jeesite-module-filepreview</artifactId>
  79. <version>${project.parent.version}</version>
  80. </dependency> -->
  81. <!-- Spring Boot Tomcat
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-tomcat</artifactId>
  85. <scope>provided</scope>
  86. </dependency> -->
  87. </dependencies>
  88. <build>
  89. <finalName>${finalName}</finalName>
  90. <outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>
  91. <plugins>
  92. <!-- Spring Boot -->
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. <configuration>
  97. <includeSystemScope>true</includeSystemScope>
  98. </configuration>
  99. </plugin>
  100. <!-- war插件,war包名称不带版本号 -->
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-war-plugin</artifactId>
  104. <configuration>
  105. <warName>${finalName}</warName>
  106. </configuration>
  107. </plugin>
  108. <!-- Eclipse 插件 -->
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-eclipse-plugin</artifactId>
  112. <configuration>
  113. <downloadSources>${eclipse-plugin-download-sources}</downloadSources>
  114. <downloadJavadocs>${eclipse-plugin-download-javadocs}</downloadJavadocs>
  115. <wtpContextName>${finalName}</wtpContextName>
  116. <wtpversion>2.0</wtpversion>
  117. <jeeversion>6.0</jeeversion>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <developers>
  123. <developer>
  124. <id>thinkgem</id>
  125. <name>WangZhen</name>
  126. <email>thinkgem at 163.com</email>
  127. <roles><role>Project lead</role></roles>
  128. <timezone>+8</timezone>
  129. </developer>
  130. </developers>
  131. <organization>
  132. <name>JeeSite</name>
  133. <url>http://jeesite.com</url>
  134. </organization>
  135. <repositories>
  136. <repository>
  137. <id>aliyun-repos</id>
  138. <url>https://maven.aliyun.com/repository/public</url>
  139. <releases><enabled>true</enabled></releases>
  140. <snapshots><enabled>false</enabled></snapshots>
  141. </repository>
  142. <repository>
  143. <id>jeesite-repos</id>
  144. <url>http://maven.jeesite.net/repository/maven-public</url>
  145. </repository>
  146. </repositories>
  147. <pluginRepositories>
  148. <pluginRepository>
  149. <id>aliyun-repos</id>
  150. <url>https://maven.aliyun.com/repository/public</url>
  151. <releases><enabled>true</enabled></releases>
  152. <snapshots><enabled>false</enabled></snapshots>
  153. </pluginRepository>
  154. <pluginRepository>
  155. <id>jeesite-repos</id>
  156. <url>http://maven.jeesite.net/repository/maven-public</url>
  157. </pluginRepository>
  158. </pluginRepositories>
  159. </project>