123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.ssj</groupId>
- <artifactId>ssj</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>ssj-weixin</artifactId>
- <packaging>war</packaging>
- <name>ssj-weixin</name>
- <description>微信H5</description>
- <dependencies>
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-kmt-exercise-service</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.4.7</version>
- </dependency>
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-sys-service</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-baidu-aipface</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-weixin-pay</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-config</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-weixin</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-excel</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.ssj</groupId>
- <artifactId>ssj-common-file</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
-
- </dependencies>
- <profiles>
- <profile>
- <id>local</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <!-- 数据库配置 -->
- <com.ssj.jdbc.url>120.77.207.0:8066/duicuo</com.ssj.jdbc.url>
- <com.ssj.jdbc.username>duicuo_user</com.ssj.jdbc.username>
- <com.ssj.jdbc.password>duicuoUser!@123</com.ssj.jdbc.password>
-
- <!-- redis 配置 -->
- <com.ssj.redis.host>120.77.207.0</com.ssj.redis.host>
- <com.ssj.redis.port>6379</com.ssj.redis.port>
- <com.ssj.redis.password>dc1qazxsw2!@</com.ssj.redis.password>
- <!-- rabbitmq 配置 -->
- <com.ssj.rabbitmq.host>120.79.142.254</com.ssj.rabbitmq.host>
- <com.ssj.rabbitmq.port>5672</com.ssj.rabbitmq.port>
- <com.ssj.rabbitmq.username>admin1</com.ssj.rabbitmq.username>
- <com.ssj.rabbitmq.password>admin1</com.ssj.rabbitmq.password>
-
- <com.ssj.dubbo.registry.address>zookeeper://120.79.142.254:2181</com.ssj.dubbo.registry.address>
- <com.ssj.solr.host>http://120.79.142.254:8080/solr</com.ssj.solr.host>
- <com.ssj.hibernate.showSql>true</com.ssj.hibernate.showSql>
- </properties>
- </profile>
-
- </profiles>
- </project>
|