| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?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">
- <parent>
- <artifactId>cacp-spring-boot-parent</artifactId>
- <groupId>cn.gov.customs.cacp</groupId>
- <version>2024.0.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>cn.gov.customs.demo</groupId>
- <artifactId>government-demo-service</artifactId>
- <version>1.0-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-service-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-datasource-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-audit-sdk</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-auth-sdk</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-hgid-sdk</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-frame-api-sdk</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-enhance-accessory-sdk</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>cn.gov.customs.cacp</groupId>
- <artifactId>cacp-enhance-workflow-full-sdk</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- dm -->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- </dependency>
- <!-- swagger-ui -->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.10.5</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>host-maven-snapshot</id> <!-- id的名字可以任意取,但是在setting文件中的属性<server>的ID与这里一致 -->
- <name>host-maven-snapshot</name>
- <url>http://43.137.18.189:8881/repository/host-maven-snapshot/</url>
- </repository>
- <snapshotRepository>
- <id>host-maven-public</id>
- <name>host-maven-public</name>
- <url>http://43.137.18.189:8881/repository/host-maven-public/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|