123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <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>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>egress-gateway-service</artifactId>
- <version>1.0</version>
- <packaging>pom</packaging>
- <description>惠融数科基于COLA构建的应用骨架</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <atlantis-component.version>1.0.0</atlantis-component.version>
- <spring-boot.version>2.7.6</spring-boot.version>
- <mybatis-plus.version>3.5.4.1</mybatis-plus.version>
- <druid-starter.version>1.2.9</druid-starter.version>
- <commons-lang3.version>3.9</commons-lang3.version>
- <commons-codec.version>1.16.1</commons-codec.version>
- <cola.components.version>>4.3.2</cola.components.version>
- <hessian.version>4.0.60</hessian.version>
- <http.version>4.5.5</http.version>
- <common-pools.version>2.4.2</common-pools.version>
- <mybatis-plus-generator.version>3.5.1</mybatis-plus-generator.version>
- <fast2json.version>2.0.7</fast2json.version>
- <guva.version>33.2.1-jre</guva.version>
- <jedis.version>4.2.2</jedis.version>
- <jetcache.version>2.5.14</jetcache.version>
- <redis.version>2.7.6</redis.version>
- <bcprov.version>1.56</bcprov.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <!-- 应用模块依赖-start -->
- <dependency>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>start</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>egress-gateway-service-app</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>egress-gateway-service-adapter</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>egress-gateway-service-client</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>egress-gateway-service-infrastructure</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.hrsk.cloud</groupId>
- <artifactId>egress-gateway-service-domain</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cola</groupId>
- <artifactId>cola-components-bom</artifactId>
- <version>4.3.2</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- 应用模块依赖-end -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons-codec.version}</version>
- </dependency>
- <dependency>
- <groupId>com.hrsk.pangu</groupId>
- <artifactId>pangu-component-bom</artifactId>
- <version>${atlantis-component.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>${druid-starter.version}</version>
- </dependency>
- <dependency>
- <groupId>com.caucho</groupId>
- <artifactId>hessian</artifactId>
- <version>${hessian.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>${http.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-pool2</artifactId>
- <version>${common-pools.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>${fast2json.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guva.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <version>${redis.version}</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>${bcprov.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules> <module>start</module>
- <module>egress-gateway-service-app</module>
- <module>egress-gateway-service-adapter</module>
- <module>egress-gateway-service-client</module>
- <module>egress-gateway-service-infrastructure</module>
- <module>egress-gateway-service-domain</module>
- </modules>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <configuration>
- <mainClass>com.hrsk.cloud.eg.Application</mainClass>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.3.0</version>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.hrsk.cloud.eg.Application</mainClass>
- </manifest>
- </archive>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>3.3.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.10.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.2.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.4.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>3.0.0</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <!-- 本地nexus私有库-->
- <distributionManagement>
- <snapshotRepository>
- <id>rdc-snapshots</id>
- <name>snapshots</name>
- <url>http://192.168.1.169:8000/repository/maven-snapshots/</url>
- </snapshotRepository>
- <repository>
- <id>rdc-releases</id>
- <name>release</name>
- <url>http://192.168.1.169:8000/repository/maven-releases/</url>
- </repository>
- </distributionManagement>
- </project>
|