123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.0.1.RELEASE</version>
- </parent>
- <groupId>com.juxiao.xchat</groupId>
- <artifactId>xchat</artifactId>
- <packaging>pom</packaging>
- <version>1.0.0</version>
- <name>xchat</name>
- <description>卿卿语音新服务</description>
- <modules>
- <module>xchat-base</module>
- <module>xchat-dao</module>
- <module>xchat-manager</module>
- <module>xchat-service-admin</module>
- <module>xchat-service-api</module>
- <module>xchat-service-common</module>
- <module>xchat-service-oauth2</module>
- <module>xchat-service-record</module>
- <module>xchat-service-task</module>
- <module>xchat-web-admin</module>
- <module>xchat-web-api</module>
- <module>xchat-web-oauth2</module>
- <module>xchat-web-record</module>
- <module>xchat-web-task</module>
- </modules>
- <properties>
- <alibaba.druid>1.1.9</alibaba.druid>
- </properties>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <configuration>
- <encoding>utf-8</encoding>
- <useDefaultDelimiters>true</useDefaultDelimiters>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <configuration>
- <encoding>UTF-8</encoding>
- <useDefaultDelimiters>true</useDefaultDelimiters>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- <includes>
- <include>**/*.properties</include>
- <include>**/*.xml</include>
- <include>**/*.yml</include>
- </includes>
- </resource>
- </resources>
- </build>
- <dependencies>
- <!-- ================================== springboot开始 ================================== -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- ================================== springboot结束 ================================== -->
- <!-- ================================== mysql jdbc驱动开始 ================================== -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!-- ================================== mysql jdbc驱动结束 ================================== -->
- <!-- ================================== alibaba的druid数据库连接池开始 ================================== -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.9</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>1.1.9</version>
- </dependency>
- <!-- ================================== alibaba的druid数据库连接池结束 ================================== -->
- <!-- ==================================整合mybatis 开始 ================================== -->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>1.3.0</version>
- </dependency>
- <!-- ==================================整合mybatis 结束 ================================== -->
- <!-- ================================== jackson 开始 ================================== -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.datatype</groupId>
- <artifactId>jackson-datatype-joda</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.module</groupId>
- <artifactId>jackson-module-parameter-names</artifactId>
- </dependency>
- <!-- ================================== jackson 开始 ================================== -->
- <!-- ================================== redis缓存开始 ================================== -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <exclusions>
- <exclusion>
- <groupId>io.lettuce</groupId>
- <artifactId>lettuce-core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- </dependency>
- <!-- ================================== redis缓存结束 ================================== -->
- <!-- ================================== activemq缓存开始 ================================== -->
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-client</artifactId>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.47</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jms</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.geronimo.specs</groupId>
- <artifactId>geronimo-jms_1.1_spec</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-pool</artifactId>
- </dependency>
- <!-- ================================== activemq缓存结束 ================================== -->
- <!-- ================================== httpclient 开始 ================================== -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- </dependency>
- <!-- ================================== httpclient 结束 ================================== -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.47</version>
- </dependency>
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.4.9</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-io -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.16.10</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- <version>4.0.3</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.9.2</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.6.1</version>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>local</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <spring.datasource.master.url><![CDATA[jdbc:mysql://120.79.211.173:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.master.url>
- <spring.datasource.master.username><![CDATA[root]]></spring.datasource.master.username>
- <spring.datasource.master.password><![CDATA[Shanp123.]]></spring.datasource.master.password>
- <spring.datasource.slave.url><![CDATA[jdbc:mysql://120.79.211.173:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.slave.url>
- <spring.datasource.slave.username><![CDATA[root]]></spring.datasource.slave.username>
- <spring.datasource.slave.password><![CDATA[Shanp123.]]></spring.datasource.slave.password>
- <spring.redis.host><![CDATA[192.168.2.10]]></spring.redis.host>
- <spring.redis.port><![CDATA[6379]]></spring.redis.port>
- <spring.redis.password><![CDATA[Shanp123.]]></spring.redis.password>
- <spring.activemq.brokerurl><![CDATA[tcp://192.168.2.10:61616]]></spring.activemq.brokerurl>
- <logback.stdout><![CDATA[
- <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
- <encoder>
- <pattern>%d %p [%thread] (%logger:%line\) - %m%n</pattern>
- <charset>UTF-8</charset>
- </encoder>
- </appender>
- <logger name="org.apache.ibatis.logging.jdbc" level="DEBUG">
- <appender-ref ref="STDOUT"/>
- </logger>
- ]]></logback.stdout>
- <logback.root><![CDATA[
- <root level="info">
- <appender-ref ref="STDOUT"/>
- </root>
- ]]></logback.root>
- <common.system.env>local</common.system.env>
- <common.system.envName>本地</common.system.envName>
- <common.system.secretaryUid>1</common.system.secretaryUid>
- <common.system.likeMsgUid>1</common.system.likeMsgUid>
- <common.system.officialUid>1</common.system.officialUid>
- <common.system.officialRoomId>10102444</common.system.officialRoomId>
- <external.pingxx.appId>app_WjHqbPu9inzHaTuT</external.pingxx.appId>
- <external.pingxx.apiKey>sk_test_TybjzLKKezzTr1iPCOjL8WfL</external.pingxx.apiKey>
- <external.pingxx.publicKey>-----BEGIN PUBLIC KEY-----MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1XOQ6+nEvX3ypCO9n9FNKki6B5f//oxaKSRzWbOKryidMmYvbs2Mo4cOcILsRFOyS8n1a8q5bBwCer3CryTkEuTsEcCwNrEVg0KKJERoHimN+TQ355/+vesuoxnzz7NtQx6YTQwlL2fVWxElTW7jKo2mnk1FUROiS2TXZSbvjoYXIRkK9lMpS3nYly8pBqZrFaYrWYLAAAFLygM8xbrJ6N5Hu8yfYhYBtCK2OlTwIz/ydllzhKgFXwCdhGvGhGRPDO2vpQUFvJbKsyuUDecWkS+2IBeCTQINiQs9jFqyyKFlZg5rbciqT8+e7yzWtnp1tab7SccjpX/XOd88TpQtywIDAQAB-----END PUBLIC KEY-----</external.pingxx.publicKey>
- <external.pingxx.pingxxPrivateKeyPath>/pingxxPath/pingxx_rsa_private_key.pem</external.pingxx.pingxxPrivateKeyPath>
- <external.weixin.notifyUrl>http://beta.chaoxuntech.com/wx/payCallback</external.weixin.notifyUrl>
- <external.im.host>http://192.168.2.10</external.im.host>
- <external.friendship.host>http://192.168.2.10</external.friendship.host>
- <external.friendship.tokenHeader>My-Token</external.friendship.tokenHeader>
- <external.zego.tokenUrl>https://test2-liveroom-api.zego.im/cgi/token</external.zego.tokenUrl>
- <external.joinpay.notifyUrl>http://beta.chaoxuntech.com/joinpay/callback</external.joinpay.notifyUrl>
- </properties>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <spring.datasource.master.url><![CDATA[jdbc:mysql://120.79.211.173:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.master.url>
- <spring.datasource.master.username><![CDATA[root]]></spring.datasource.master.username>
- <spring.datasource.master.password><![CDATA[Shanp123.]]></spring.datasource.master.password>
- <spring.datasource.slave.url><![CDATA[jdbc:mysql://120.79.211.173:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.slave.url>
- <spring.datasource.slave.username><![CDATA[root]]></spring.datasource.slave.username>
- <spring.datasource.slave.password><![CDATA[Shanp123.]]></spring.datasource.slave.password>
- <spring.redis.host><![CDATA[192.168.2.10]]></spring.redis.host>
- <spring.redis.port><![CDATA[6379]]></spring.redis.port>
- <spring.redis.password><![CDATA[Shanp123.]]></spring.redis.password>
- <spring.activemq.brokerurl><![CDATA[tcp://192.168.2.10:61616]]></spring.activemq.brokerurl>
- <logback.stdout>
- </logback.stdout>
- <logback.root>
- </logback.root>
- <common.system.env>test</common.system.env>
- <common.system.envName>测试</common.system.envName>
- <common.system.secretaryUid>500001</common.system.secretaryUid>
- <common.system.likeMsgUid>500001</common.system.likeMsgUid>
- <common.system.officialUid>500001</common.system.officialUid>
- <common.system.officialRoomId>1000016</common.system.officialRoomId>
- <external.pingxx.appId>app_CS0qfL0u5GSKzTWD</external.pingxx.appId>
- <external.pingxx.apiKey>sk_live_TSqX9CTCanX9irD4a1GmXnnH</external.pingxx.apiKey>
- <external.pingxx.publicKey>-----BEGIN PUBLIC KEY-----MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApk3Ygg0naCYbSl7/qvgfwVfi6H1q0ACotgFd5uOUJUPyg0SJcGOtq7l9eaxacn0G7AaOQbtLaw0bRm8e9b9xDqUDVkJRHKrShIKL/aG8i2WaJFvzsCpblHaM7usQtrYsgC9TZpCrj1XFfw83EKZtLx4fGB7YlUwIeUy/n+l18BPNDQkLqi2EOgh12dRR4sIAZwXom3Sd4Z9RyGJMnuHiHItBq9/l434A8HQF3WzeLnQpfyXg5RMlImV5zU9ykmEnEjxHya9G9DtnF2AN3e7beiCfUHzelvEWhsvdyG7A3BVxXrte0UIVbj6DnppCjZHCxPy1J0+QY/pwr9ZT6Iz6SwIDAQAB-----END PUBLIC KEY-----</external.pingxx.publicKey>
- <external.pingxx.pingxxPrivateKeyPath>/pingxxPath/pingxx_rsa_private_key.pem</external.pingxx.pingxxPrivateKeyPath>
- <external.weixin.notifyUrl>http://api.chaoxuntech.com/wx/payCallback</external.weixin.notifyUrl>
- <external.im.host>http://127.0.0.1</external.im.host>
- <external.zego.tokenUrl>https://liveroom197844898-api.zego.im/cgi/token</external.zego.tokenUrl>
- <external.joinpay.notifyUrl>http://api.chaoxuntech.com/joinpay/callback</external.joinpay.notifyUrl>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <spring.datasource.master.url><![CDATA[jdbc:mysql://rm-bp124xu8o48026e5t.mysql.rds.aliyuncs.com:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.master.url>
- <spring.datasource.master.username><![CDATA[qingqing]]></spring.datasource.master.username>
- <spring.datasource.master.password><![CDATA[mysqlq1w2E#R$]]></spring.datasource.master.password>
- <spring.datasource.slave.url><![CDATA[jdbc:mysql://rr-bp18c30ypb38y8sh9.mysql.rds.aliyuncs.com:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.slave.url>
- <spring.datasource.slave.username><![CDATA[qingqing]]></spring.datasource.slave.username>
- <spring.datasource.slave.password><![CDATA[mysqlq1w2E#R$]]></spring.datasource.slave.password>
- <spring.redis.host><![CDATA[172.16.252.108]]></spring.redis.host>
- <spring.redis.port><![CDATA[6379]]></spring.redis.port>
- <spring.redis.password><![CDATA[redisq1w2E#R$]]></spring.redis.password>
- <spring.activemq.brokerurl><![CDATA[tcp://172.16.63.173:61616]]></spring.activemq.brokerurl>
- <logback.stdout>
- </logback.stdout>
- <logback.root>
- </logback.root>
- <common.system.env>prod</common.system.env>
- <common.system.envName>正式</common.system.envName>
- <common.system.secretaryUid>500001</common.system.secretaryUid>
- <common.system.likeMsgUid>500001</common.system.likeMsgUid>
- <common.system.officialUid>500001</common.system.officialUid>
- <common.system.officialRoomId>1000016</common.system.officialRoomId>
- <external.pingxx.appId>app_CS0qfL0u5GSKzTWD</external.pingxx.appId>
- <external.pingxx.apiKey>sk_live_TSqX9CTCanX9irD4a1GmXnnH</external.pingxx.apiKey>
- <external.pingxx.publicKey>-----BEGIN PUBLIC KEY-----MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApk3Ygg0naCYbSl7/qvgfwVfi6H1q0ACotgFd5uOUJUPyg0SJcGOtq7l9eaxacn0G7AaOQbtLaw0bRm8e9b9xDqUDVkJRHKrShIKL/aG8i2WaJFvzsCpblHaM7usQtrYsgC9TZpCrj1XFfw83EKZtLx4fGB7YlUwIeUy/n+l18BPNDQkLqi2EOgh12dRR4sIAZwXom3Sd4Z9RyGJMnuHiHItBq9/l434A8HQF3WzeLnQpfyXg5RMlImV5zU9ykmEnEjxHya9G9DtnF2AN3e7beiCfUHzelvEWhsvdyG7A3BVxXrte0UIVbj6DnppCjZHCxPy1J0+QY/pwr9ZT6Iz6SwIDAQAB-----END PUBLIC KEY-----</external.pingxx.publicKey>
- <external.pingxx.pingxxPrivateKeyPath>/pingxxPath/pingxx_rsa_private_key.pem</external.pingxx.pingxxPrivateKeyPath>
- <external.weixin.notifyUrl>http://api.chaoxuntech.com/wx/payCallback</external.weixin.notifyUrl>
- <external.im.host>http://127.0.0.1</external.im.host>
- <external.zego.tokenUrl>https://liveroom197844898-api.zego.im/cgi/token</external.zego.tokenUrl>
- <external.joinpay.notifyUrl>http://api.chaoxuntech.com/joinpay/callback</external.joinpay.notifyUrl>
- </properties>
- </profile>
- <profile>
- <id>release</id>
- <properties>
- <spring.datasource.master.url><![CDATA[jdbc:mysql://rm-2ze7v9kiy2oz0cgwh.mysql.rds.aliyuncs.com:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.master.url>
- <spring.datasource.master.username><![CDATA[yingtao]]></spring.datasource.master.username>
- <spring.datasource.master.password><![CDATA[yingtao@MysqlJuXiao2019&**]]></spring.datasource.master.password>
- <spring.datasource.slave.url><![CDATA[jdbc:mysql://rr-2zei30mme1mlpwz8f.mysql.rds.aliyuncs.com:3306/yingtao?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true]]></spring.datasource.slave.url>
- <spring.datasource.slave.username><![CDATA[yingtao]]></spring.datasource.slave.username>
- <spring.datasource.slave.password><![CDATA[yingtao@MysqlJuXiao2019&**]]></spring.datasource.slave.password>
- <spring.redis.host><![CDATA[r-2ze2alwgcsjxv6lqjb.redis.rds.aliyuncs.com]]></spring.redis.host>
- <spring.redis.port><![CDATA[6379]]></spring.redis.port>
- <spring.redis.password><![CDATA[yingtao2@0)1!9(]]></spring.redis.password>
- <spring.activemq.brokerurl><![CDATA[tcp://127.0.0.1:61616]]></spring.activemq.brokerurl>
- <logback.stdout>
- </logback.stdout>
- <logback.root>
- </logback.root>
- <common.system.env>release</common.system.env>
- <common.system.envName>预发布服</common.system.envName>
- <common.system.secretaryUid>500001</common.system.secretaryUid>
- <common.system.likeMsgUid>500001</common.system.likeMsgUid>
- <common.system.officialUid>500001</common.system.officialUid>
- <common.system.officialRoomId>1000016</common.system.officialRoomId>
- <external.pingxx.appId>app_bTuTaPTSOm58j1S0</external.pingxx.appId>
- <external.pingxx.apiKey>sk_live_ijnj1ODWDijLXXT8OS5uLSiL</external.pingxx.apiKey>
- <external.pingxx.publicKey>-----BEGIN PUBLIC KEY-----MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1XOQ6+nEvX3ypCO9n9FNKki6B5f//oxaKSRzWbOKryidMmYvbs2Mo4cOcILsRFOyS8n1a8q5bBwCer3CryTkEuTsEcCwNrEVg0KKJERoHimN+TQ355/+vesuoxnzz7NtQx6YTQwlL2fVWxElTW7jKo2mnk1FUROiS2TXZSbvjoYXIRkK9lMpS3nYly8pBqZrFaYrWYLAAAFLygM8xbrJ6N5Hu8yfYhYBtCK2OlTwIz/ydllzhKgFXwCdhGvGhGRPDO2vpQUFvJbKsyuUDecWkS+2IBeCTQINiQs9jFqyyKFlZg5rbciqT8+e7yzWtnp1tab7SccjpX/XOd88TpQtywIDAQAB-----END PUBLIC KEY-----</external.pingxx.publicKey>
- <external.pingxx.pingxxPrivateKeyPath>/pingxxPath/pingxx_rsa_private_key.pem</external.pingxx.pingxxPrivateKeyPath>
- <external.weixin.notifyUrl>http://www.hnyueqiang.com/wx/payCallback</external.weixin.notifyUrl>
- <external.im.host>http://127.0.0.1:3007</external.im.host>
- <external.zego.tokenUrl>https://liveroom197844898-api.zego.im/cgi/token</external.zego.tokenUrl>
- <external.joinpay.notifyUrl>http://api.chaoxuntech.com/joinpay/callback</external.joinpay.notifyUrl>
- </properties>
- </profile>
- </profiles>
- </project>
|