pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.fjs.scenic</groupId>
  5. <artifactId>fjs-parent</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.0.5.RELEASE</version>
  12. <relativePath /> <!-- lookup parent from repository -->
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.alipay.sdk</groupId>
  23. <artifactId>alipay-sdk-java</artifactId>
  24. <version>3.6.0.ALL</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. <version>1.2.30</version>
  30. </dependency>
  31. <!-- httpclient -->
  32. <dependency>
  33. <groupId>commons-httpclient</groupId>
  34. <artifactId>commons-httpclient</artifactId>
  35. <version>3.1</version>
  36. </dependency>
  37. <!-- mybatis -->
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. <version>1.3.2</version>
  42. </dependency>
  43. <!-- 支付相关 -->
  44. <!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java -->
  45. <!-- <dependency>
  46. <groupId>com.alipay.sdk</groupId>
  47. <artifactId>alipay-sdk-java</artifactId>
  48. <version>3.7.4.ALL</version>
  49. </dependency> -->
  50. <!-- https://mvnrepository.com/artifact/com.github.wxpay/wxpay-sdk -->
  51. <dependency>
  52. <groupId>com.github.wxpay</groupId>
  53. <artifactId>wxpay-sdk</artifactId>
  54. <version>0.0.3</version>
  55. </dependency>
  56. <!--热部署工具-->
  57. <!-- <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-devtools</artifactId>
  60. <optional>true</optional>
  61. </dependency> -->
  62. </dependencies>
  63. </dependencyManagement>
  64. <profiles>
  65. <profile>
  66. <!-- 测试环境 -->
  67. <id>dev</id>
  68. <properties>
  69. <profiles.active>dev</profiles.active>
  70. </properties>
  71. <!-- 默认测试开发环境 -->
  72. <activation>
  73. <activeByDefault>true</activeByDefault>
  74. </activation>
  75. </profile>
  76. <profile>
  77. <!-- 生产环境 -->
  78. <id>prod</id>
  79. <properties>
  80. <profiles.active>prod</profiles.active>
  81. </properties>
  82. </profile>
  83. </profiles>
  84. <build>
  85. <plugins>
  86. <!-- <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. 热启动
  90. <configuration>
  91. <fork>true</fork>
  92. </configuration>
  93. </plugin> -->
  94. </plugins>
  95. </build>
  96. <modules>
  97. <module>fjs-scenic-manager</module>
  98. <module>fjs-scenic-wx</module>
  99. <module>fjs-scenic-mapper</module>
  100. <module>fjs-scenic-entity</module>
  101. <module>fjs-scenic-service</module>
  102. <module>fjs-scenic-common</module>
  103. </modules>
  104. </project>