pom.xml 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.huiju</groupId>
  12. <artifactId>estateagents</artifactId>
  13. <version>v0.0.2</version>
  14. <name>estateagents</name>
  15. <description>置业经纪人</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-configuration-processor</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. <version>3.1.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-websocket</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  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>com.github.binarywang</groupId>
  55. <artifactId>weixin-java-miniapp</artifactId>
  56. <version>3.3.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. <version>1.2.56</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.jsonwebtoken</groupId>
  65. <artifactId>jjwt-api</artifactId>
  66. <version>0.10.5</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.jsonwebtoken</groupId>
  70. <artifactId>jjwt-impl</artifactId>
  71. <version>0.10.5</version>
  72. <scope>runtime</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.jsonwebtoken</groupId>
  76. <artifactId>jjwt-jackson</artifactId>
  77. <version>0.10.5</version>
  78. <scope>runtime</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.aliyun.oss</groupId>
  82. <artifactId>aliyun-sdk-oss</artifactId>
  83. <version>2.8.3</version>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  86. <dependency>
  87. <groupId>org.dom4j</groupId>
  88. <artifactId>dom4j</artifactId>
  89. <version>2.1.1</version>
  90. </dependency>
  91. </dependencies>
  92. <profiles>
  93. <profile>
  94. <id>dev</id>
  95. <activation>
  96. <activeByDefault>true</activeByDefault>
  97. </activation>
  98. <properties>
  99. <profiles.active>dev</profiles.active>
  100. </properties>
  101. </profile>
  102. <profile>
  103. <id>test</id>
  104. <properties>
  105. <profiles.active>test</profiles.active>
  106. </properties>
  107. </profile>
  108. <profile>
  109. <id>prod</id>
  110. <properties>
  111. <profiles.active>prod</profiles.active>
  112. </properties>
  113. </profile>
  114. </profiles>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. </plugin>
  121. </plugins>
  122. <resources>
  123. <resource>
  124. <directory>src/main/resources</directory>
  125. <filtering>true</filtering>
  126. <includes>
  127. <include>application.yml</include>
  128. <include>application-${profiles.active}.yml</include>
  129. </includes>
  130. </resource>
  131. </resources>
  132. </build>
  133. </project>