32 changed files with 200 additions and 160 deletions
@ -0,0 +1,12 @@ |
|||||
|
[submodule "epdc-cloud-parent-yushan"] |
||||
|
path = epdc-cloud-parent-yushan |
||||
|
url = http://121.42.41.42:7070/r/epdc-cloud-parent-yushan.git |
||||
|
[submodule "epdc-cloud-commons-yushan"] |
||||
|
path = epdc-cloud-commons-yushan |
||||
|
url = http://121.42.41.42:7070/r/epdc-cloud-commons-yushan.git |
||||
|
[submodule "epdc-cloud-gateway-yushan"] |
||||
|
path = epdc-cloud-gateway-yushan |
||||
|
url = http://121.42.41.42:7070/r/epdc-cloud-gateway-yushan.git |
||||
|
[submodule "epdc-cloud-client-yushan"] |
||||
|
path = epdc-cloud-client-yushan |
||||
|
url = http://121.42.41.42:7070/r/epdc-cloud-client-yushan.git |
@ -0,0 +1,175 @@ |
|||||
|
<?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>com.esua.epdc.yushan</groupId> |
||||
|
<artifactId>epdc-cloud-parent-yushan</artifactId> |
||||
|
<version>1.0.0</version> |
||||
|
<relativePath>../epdc-cloud-parent-yushan</relativePath> |
||||
|
</parent> |
||||
|
|
||||
|
<artifactId>epdc-cloud-auth</artifactId> |
||||
|
<packaging>jar</packaging> |
||||
|
<description>榆山党群e家微服务身份认证模块</description> |
||||
|
|
||||
|
<properties> |
||||
|
<jjwt.version>0.10.4</jjwt.version> |
||||
|
<kaptcha.version>0.0.9</kaptcha.version> |
||||
|
</properties> |
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>com.esua.epdc.yushan</groupId> |
||||
|
<artifactId>epdc-common-clienttoken</artifactId> |
||||
|
<version>${epdc-cloud-commons.version}</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-web</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.cloud</groupId> |
||||
|
<artifactId>spring-cloud-starter-openfeign</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.cloud</groupId> |
||||
|
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.alibaba.cloud</groupId> |
||||
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>io.jsonwebtoken</groupId> |
||||
|
<artifactId>jjwt</artifactId> |
||||
|
<version>0.7.0</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.github.axet</groupId> |
||||
|
<artifactId>kaptcha</artifactId> |
||||
|
<version>${kaptcha.version}</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.google.guava</groupId> |
||||
|
<artifactId>guava</artifactId> |
||||
|
</dependency> |
||||
|
<!-- zipkin client --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.cloud</groupId> |
||||
|
<artifactId>spring-cloud-starter-zipkin</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- client start --> |
||||
|
<dependency> |
||||
|
<groupId>com.esua.epdc.yushan</groupId> |
||||
|
<artifactId>epdc-cloud-admin-client</artifactId> |
||||
|
<version>${epdc-cloud-client.version}</version> |
||||
|
</dependency> |
||||
|
<!-- client end --> |
||||
|
</dependencies> |
||||
|
|
||||
|
<build> |
||||
|
<finalName>${project.artifactId}</finalName> |
||||
|
<plugins> |
||||
|
<plugin> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
|
</plugin> |
||||
|
<plugin> |
||||
|
<groupId>org.apache.maven.plugins</groupId> |
||||
|
<artifactId>maven-surefire-plugin</artifactId> |
||||
|
<configuration> |
||||
|
<skipTests>true</skipTests> |
||||
|
</configuration> |
||||
|
</plugin> |
||||
|
<plugin> |
||||
|
<groupId>org.apache.maven.plugins</groupId> |
||||
|
<artifactId>maven-deploy-plugin</artifactId> |
||||
|
<configuration> |
||||
|
<skip>true</skip> |
||||
|
</configuration> |
||||
|
</plugin> |
||||
|
<plugin> |
||||
|
<groupId>com.spotify</groupId> |
||||
|
<artifactId>dockerfile-maven-plugin</artifactId> |
||||
|
</plugin> |
||||
|
</plugins> |
||||
|
</build> |
||||
|
|
||||
|
<profiles> |
||||
|
<profile> |
||||
|
<id>dev</id> |
||||
|
<activation> |
||||
|
<activeByDefault>true</activeByDefault> |
||||
|
</activation> |
||||
|
<properties> |
||||
|
<server.port>9091</server.port> |
||||
|
<spring.profiles.active>dev</spring.profiles.active> |
||||
|
<docker.tag>dev</docker.tag> |
||||
|
|
||||
|
<!-- redis配置 --> |
||||
|
<spring.redis.index>2</spring.redis.index> |
||||
|
<spring.redis.host>114.215.125.123</spring.redis.host> |
||||
|
<spring.redis.port>9603</spring.redis.port> |
||||
|
<spring.redis.password>epdc!redis@master1405</spring.redis.password> |
||||
|
|
||||
|
<!-- nacos --> |
||||
|
<nacos.register-enabled>false</nacos.register-enabled> |
||||
|
<nacos.server-addr>47.104.224.45:8848</nacos.server-addr> |
||||
|
<nacos.ip></nacos.ip> |
||||
|
<nacos.namespace>6a3577b4-7b79-43f6-aebb-9c3f31263f6a</nacos.namespace> |
||||
|
|
||||
|
<spring.zipkin.base-url>http://localhost:9411</spring.zipkin.base-url> |
||||
|
</properties> |
||||
|
</profile> |
||||
|
<profile> |
||||
|
<id>test</id> |
||||
|
<properties> |
||||
|
<server.port>10002</server.port> |
||||
|
<spring.profiles.active>test</spring.profiles.active> |
||||
|
<docker.tag>test</docker.tag> |
||||
|
|
||||
|
<!-- redis配置 --> |
||||
|
<spring.redis.index>2</spring.redis.index> |
||||
|
<spring.redis.host>114.215.125.123</spring.redis.host> |
||||
|
<spring.redis.port>9603</spring.redis.port> |
||||
|
<spring.redis.password>epdc!redis@master1405</spring.redis.password> |
||||
|
|
||||
|
<!-- nacos --> |
||||
|
<nacos.register-enabled>true</nacos.register-enabled> |
||||
|
<nacos.server-addr>47.104.224.45:8848</nacos.server-addr> |
||||
|
<nacos.ip>47.104.85.99</nacos.ip> |
||||
|
<nacos.namespace>6a3577b4-7b79-43f6-aebb-9c3f31263f6a</nacos.namespace> |
||||
|
|
||||
|
<spring.zipkin.base-url>http://localhost:9411</spring.zipkin.base-url> |
||||
|
</properties> |
||||
|
</profile> |
||||
|
|
||||
|
<profile> |
||||
|
<id>prod</id> |
||||
|
<properties> |
||||
|
<server.port>9056</server.port> |
||||
|
<spring.profiles.active>prod</spring.profiles.active> |
||||
|
<docker.tag>prod</docker.tag> |
||||
|
|
||||
|
<!-- redis配置 --> |
||||
|
<spring.redis.index>0</spring.redis.index> |
||||
|
<spring.redis.host>172.16.0.54</spring.redis.host> |
||||
|
<spring.redis.port>6379</spring.redis.port> |
||||
|
<spring.redis.password>Elink833066</spring.redis.password> |
||||
|
|
||||
|
<!-- nacos --> |
||||
|
<nacos.register-enabled>true</nacos.register-enabled> |
||||
|
<nacos.server-addr>172.16.0.52:8848</nacos.server-addr> |
||||
|
<nacos.ip></nacos.ip> |
||||
|
<nacos.namespace></nacos.namespace> |
||||
|
|
||||
|
<spring.zipkin.base-url>http://172.31.171.61:9411</spring.zipkin.base-url> |
||||
|
</properties> |
||||
|
</profile> |
||||
|
</profiles> |
||||
|
</project> |
Loading…
Reference in new issue