pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.ssj</groupId>
  5. <artifactId>ssj</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>ssj-weixin</artifactId>
  9. <packaging>war</packaging>
  10. <name>ssj-weixin</name>
  11. <description>微信H5</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.ssj</groupId>
  15. <artifactId>ssj-kmt-exercise-service</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.thoughtworks.xstream</groupId>
  19. <artifactId>xstream</artifactId>
  20. <version>1.4.7</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.ssj</groupId>
  24. <artifactId>ssj-sys-service</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.ssj</groupId>
  29. <artifactId>ssj-common-controller</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.ssj</groupId>
  34. <artifactId>ssj-common-baidu-aipface</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.ssj</groupId>
  39. <artifactId>ssj-common-weixin-pay</artifactId>
  40. <version>0.0.1-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ssj</groupId>
  44. <artifactId>ssj-common-config</artifactId>
  45. <version>0.0.1-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.ssj</groupId>
  49. <artifactId>ssj-common-weixin</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.ssj</groupId>
  54. <artifactId>ssj-common-excel</artifactId>
  55. <version>0.0.1-SNAPSHOT</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.ssj</groupId>
  59. <artifactId>ssj-common-file</artifactId>
  60. <version>0.0.1-SNAPSHOT</version>
  61. </dependency>
  62. </dependencies>
  63. <profiles>
  64. <profile>
  65. <id>local</id>
  66. <activation>
  67. <activeByDefault>true</activeByDefault>
  68. </activation>
  69. <properties>
  70. <!-- 数据库配置 -->
  71. <com.ssj.jdbc.url>120.77.207.0:8066/duicuo</com.ssj.jdbc.url>
  72. <com.ssj.jdbc.username>duicuo_user</com.ssj.jdbc.username>
  73. <com.ssj.jdbc.password>duicuoUser!@123</com.ssj.jdbc.password>
  74. <!-- redis 配置 -->
  75. <com.ssj.redis.host>120.77.207.0</com.ssj.redis.host>
  76. <com.ssj.redis.port>6379</com.ssj.redis.port>
  77. <com.ssj.redis.password>dc1qazxsw2!@</com.ssj.redis.password>
  78. <!-- rabbitmq 配置 -->
  79. <com.ssj.rabbitmq.host>120.79.142.254</com.ssj.rabbitmq.host>
  80. <com.ssj.rabbitmq.port>5672</com.ssj.rabbitmq.port>
  81. <com.ssj.rabbitmq.username>admin1</com.ssj.rabbitmq.username>
  82. <com.ssj.rabbitmq.password>admin1</com.ssj.rabbitmq.password>
  83. <com.ssj.dubbo.registry.address>zookeeper://120.79.142.254:2181</com.ssj.dubbo.registry.address>
  84. <com.ssj.solr.host>http://120.79.142.254:8080/solr</com.ssj.solr.host>
  85. <com.ssj.hibernate.showSql>true</com.ssj.hibernate.showSql>
  86. </properties>
  87. </profile>
  88. </profiles>
  89. </project>