pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <dependency>
  44. <groupId>com.github.wxpay</groupId>
  45. <artifactId>wxpay-sdk</artifactId>
  46. <version>0.0.3</version>
  47. </dependency>
  48. </dependencies>
  49. </dependencyManagement>
  50. <profiles>
  51. <profile>
  52. <!-- 测试环境 -->
  53. <id>dev</id>
  54. <properties>
  55. <profiles.active>dev</profiles.active>
  56. </properties>
  57. <!-- 默认测试开发环境 -->
  58. <activation>
  59. <activeByDefault>true</activeByDefault>
  60. </activation>
  61. </profile>
  62. <profile>
  63. <!-- 生产环境 -->
  64. <id>prod</id>
  65. <properties>
  66. <profiles.active>prod</profiles.active>
  67. </properties>
  68. </profile>
  69. </profiles>
  70. <build>
  71. <plugins>
  72. </plugins>
  73. </build>
  74. <modules>
  75. <module>fjs-scenic-manager</module>
  76. <module>fjs-scenic-wx</module>
  77. <module>fjs-scenic-mapper</module>
  78. <module>fjs-scenic-entity</module>
  79. <module>fjs-scenic-service</module>
  80. <module>fjs-scenic-common</module>
  81. </modules>
  82. </project>