123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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>cx-question</artifactId>
- <groupId>com.rongwei</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>cx-question-entity</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-config</artifactId>
- <version>1.1-SNAPSHOT</version>
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>com.rongwei</groupId>-->
- <!-- <artifactId>rw-common-license</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- </dependency>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-utils</artifactId>
- <version>1.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>wf-entity</artifactId>
- <version>1.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>3.5.0</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- <version>8.2.2.jre8</version>
- </dependency>
- </dependencies>
- </project>
|