|
|
@ -4,13 +4,14 @@ |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
|
|
|
|
<parent> |
|
|
|
<groupId>com.esua.epdc.shibei</groupId> |
|
|
|
<artifactId>epdc-cloud-parent</artifactId> |
|
|
|
<version>1.0.0</version> |
|
|
|
<relativePath>../epdc-cloud-parent</relativePath> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
|
|
<version>2.1.7.RELEASE</version> |
|
|
|
</parent> |
|
|
|
|
|
|
|
<groupId>com.esua.epdc.shibei</groupId> |
|
|
|
<artifactId>epdc-cloud-commons</artifactId> |
|
|
|
<version>1.0.0</version> |
|
|
|
<packaging>pom</packaging> |
|
|
|
<description>市北党建e家通用jar包模块</description> |
|
|
|
|
|
|
@ -26,4 +27,126 @@ |
|
|
|
<module>shibei-gird-sdk</module> |
|
|
|
<module>spring-boot-httpclient-starter</module> |
|
|
|
</modules> |
|
|
|
|
|
|
|
<properties> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
<java.version>1.8</java.version> |
|
|
|
<spring.cloud.version>Greenwich.RELEASE</spring.cloud.version> |
|
|
|
<spring-cloud-alibaba-dependencies.version>2.1.0.RELEASE</spring-cloud-alibaba-dependencies.version> |
|
|
|
<seata.version>1.0.0</seata.version> |
|
|
|
</properties> |
|
|
|
|
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-test</artifactId> |
|
|
|
<scope>test</scope> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<dependencyManagement> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.cloud</groupId> |
|
|
|
<artifactId>spring-cloud-dependencies</artifactId> |
|
|
|
<version>${spring.cloud.version}</version> |
|
|
|
<type>pom</type> |
|
|
|
<scope>import</scope> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>com.alibaba.cloud</groupId> |
|
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId> |
|
|
|
<version>${spring-cloud-alibaba-dependencies.version}</version> |
|
|
|
<type>pom</type> |
|
|
|
<scope>import</scope> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>io.seata</groupId> |
|
|
|
<artifactId>seata-all</artifactId> |
|
|
|
<version>${seata.version}</version> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</dependencyManagement> |
|
|
|
|
|
|
|
<distributionManagement> |
|
|
|
<repository> |
|
|
|
<id>elink-release</id> |
|
|
|
<url>http://47.104.224.45:9002/repository/elink-release/</url> |
|
|
|
</repository> |
|
|
|
</distributionManagement> |
|
|
|
|
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> <!-- 打jar包 --> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-jar-plugin</artifactId> |
|
|
|
<version>3.2.0</version> |
|
|
|
<configuration> |
|
|
|
<excludes> |
|
|
|
<exclude>**/*.properties</exclude> |
|
|
|
<exclude>**/*.yml</exclude> |
|
|
|
</excludes> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
<plugin> <!-- 打源码 --> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
<version>3.2.1</version> |
|
|
|
<configuration> |
|
|
|
<attach>true</attach> |
|
|
|
</configuration> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<phase>compile</phase> |
|
|
|
<goals> |
|
|
|
<goal>jar</goal> |
|
|
|
</goals> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
|
<repositories> |
|
|
|
<repository> |
|
|
|
<id>nexus-elink-release</id> |
|
|
|
<name>aliyun nexus</name> |
|
|
|
<url>http://47.104.224.45:9002/repository/maven-public/</url> |
|
|
|
<releases> |
|
|
|
<enabled>true</enabled> |
|
|
|
</releases> |
|
|
|
</repository> |
|
|
|
<repository> |
|
|
|
<id>centerl-release</id> |
|
|
|
<name>centerl</name> |
|
|
|
<url>https://repo1.maven.org/maven2/</url> |
|
|
|
<releases> |
|
|
|
<enabled>true</enabled> |
|
|
|
</releases> |
|
|
|
</repository> |
|
|
|
<repository> |
|
|
|
<id>sonatype</id> |
|
|
|
<name>sonatype nexus</name> |
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
|
|
<releases> |
|
|
|
<enabled>true</enabled> |
|
|
|
</releases> |
|
|
|
</repository> |
|
|
|
</repositories> |
|
|
|
<pluginRepositories> |
|
|
|
<pluginRepository> |
|
|
|
<id>public</id> |
|
|
|
<name>aliyun nexus</name> |
|
|
|
<url>http://47.104.224.45:9002/repository/maven-public/</url> |
|
|
|
<releases> |
|
|
|
<enabled>true</enabled> |
|
|
|
</releases> |
|
|
|
<snapshots> |
|
|
|
<enabled>false</enabled> |
|
|
|
</snapshots> |
|
|
|
</pluginRepository> |
|
|
|
</pluginRepositories> |
|
|
|
</project> |
|
|
|