123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?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>
- <groupId>com.serbia</groupId>
- <artifactId>Serbia</artifactId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>application-webadmin</artifactId>
- <version>1.0.0</version>
- <name>application-webadmin</name>
- <packaging>jar</packaging>
- <dependencies>
- <!-- 业务组件依赖 -->
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-satoken</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-ext</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-redis</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-mobile</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-report</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-online</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-flow-online</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-huaweicloud-obs</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-huaweicloud-moderation</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-sequence</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-datafilter</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-swagger</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.serbia</groupId>
- <artifactId>common-dict</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) -->
- <version>4.6.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-amqp</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|