123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?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.3.12.RELEASE</version>
- <relativePath/>
- </parent>
- <version>1.0.0-SNAPSHOT</version>
- <artifactId>4dkankan-center-modeling-extend</artifactId>
- <repositories>
- <repository>
- <id>releases</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
- </repository>
- <repository>
- <id>snapshots</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
- </repository>
- <repository>
- <id>nexus-aliyun</id>
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-common-web</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacv</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacpp</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacv-platform</artifactId>
- </exclusion>
- <exclusion>
- <groupId>joinery</groupId>
- <artifactId>jave</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- <version>2.2.7.RELEASE</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- <version>2.2.7.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-utils-rabbitmq</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-utils-fyun-oss</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-utils-model</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-utils-redis</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-utils-db</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>tlog-web-spring-boot-starter</artifactId>
- <version>1.3.6</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.5.8</version>
- </dependency>
- <!-- htt请求工具-->
- <dependency>
- <groupId>com.dtflys.forest</groupId>
- <artifactId>forest-spring-boot-starter</artifactId>
- <version>1.5.19</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|