pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>house-parent</artifactId>
  7. <groupId>com.ljq.house</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <description>四维VR看房</description>
  13. <artifactId>house-web</artifactId>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <packaging>war</packaging>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.ljq.house</groupId>
  21. <artifactId>house-auth</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.ljq.house</groupId>
  27. <artifactId>house-biz</artifactId>
  28. <version>0.0.1-SNAPSHOT</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ljq.house</groupId>
  33. <artifactId>house-im</artifactId>
  34. <version>0.0.1-SNAPSHOT</version>
  35. <scope>compile</scope>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>fastjson</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <!-- <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>-->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.lmax</groupId>
  59. <artifactId>disruptor</artifactId>
  60. <version>3.3.6</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-configuration-processor</artifactId>
  65. <optional>true</optional>
  66. </dependency>
  67. <!--监控系统平台客户端部分-->
  68. <!-- <dependency>
  69. <groupId>de.codecentric</groupId>
  70. <artifactId>spring-boot-admin-starter-client</artifactId>
  71. <version>2.1.1</version>
  72. </dependency>-->
  73. <!--<dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-security</artifactId>
  76. </dependency>-->
  77. <!--加密、解密插件-->
  78. <dependency>
  79. <groupId>com.github.ulisesbocchio</groupId>
  80. <artifactId>jasypt-spring-boot-starter</artifactId>
  81. <version>2.1.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.sun.mail</groupId>
  85. <artifactId>javax.mail</artifactId>
  86. <version>1.6.2</version>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <finalName>house_web_01</finalName>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. <configuration>
  96. <!-- 指定该Main Class为全局的唯一入口 -->
  97. <mainClass>com.ljq.house.HouseApplication</mainClass>
  98. <fork>true</fork>
  99. </configuration>
  100. <executions>
  101. <execution>
  102. <goals>
  103. <goal>repackage</goal>
  104. </goals>
  105. </execution>
  106. </executions>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-compiler-plugin</artifactId>
  111. <configuration>
  112. <source>1.8</source>
  113. <target>1.8</target>
  114. <encoding>UTF-8</encoding>
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>