| | |
| | | <swagger.bootstrap-ui.version>1.9.6</swagger.bootstrap-ui.version> |
| | | <fastjson.version>1.2.70</fastjson.version> |
| | | <druid.version>1.2.0</druid.version> |
| | | <mybatis.plus.version>3.4.2</mybatis.plus.version> |
| | | <mybatis.plus.version>3.5.7</mybatis.plus.version> |
| | | <apache.shiro.version>1.7.0</apache.shiro.version> |
| | | <oshi.version>5.7.0</oshi.version> |
| | | <jna.version>5.7.0</jna.version> |
| | |
| | | </properties> |
| | | |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | </dependency> |
| | | <!-- Spring Boot --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | | <artifactId>pagehelper-spring-boot-starter</artifactId> |
| | | <version>1.3.0</version> |
| | | <!--使用spring boot2整合 pagehelper-spring-boot-starter必须排除一下依赖 |
| | | 因为pagehelper-spring-boot-starter也已经在pom依赖了mybatis与mybatis-spring |
| | | 所以会与mybatis-plus-boot-starter中的mybatis与mybatis-spring发生冲突 |
| | | --> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis</artifactId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis-spring</artifactId> |
| | | </exclusion> |
| | | <!-- 解决jsqlparser 依赖版本冲突--> |
| | | <exclusion> |
| | | <artifactId>jsqlparser</artifactId> |
| | | <groupId>com.github.jsqlparser</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | <version>2.1.0</version> |
| | | </dependency> |
| | | |
| | | <!-- <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | | <artifactId>pagehelper-spring-boot-starter</artifactId> |
| | | <version>1.3.0</version> |
| | | <!–使用spring boot2整合 pagehelper-spring-boot-starter必须排除一下依赖 |
| | | 因为pagehelper-spring-boot-starter也已经在pom依赖了mybatis与mybatis-spring |
| | | 所以会与mybatis-plus-boot-starter中的mybatis与mybatis-spring发生冲突 |
| | | –> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis</artifactId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis-spring</artifactId> |
| | | </exclusion> |
| | | <!– 解决jsqlparser 依赖版本冲突–> |
| | | <!–<exclusion> |
| | | <artifactId>jsqlparser</artifactId> |
| | | <groupId>com.github.jsqlparser</groupId> |
| | | </exclusion>–> |
| | | </exclusions> |
| | | </dependency>--> |
| | | <!-- 连接池 --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | |
| | | </dependency> |
| | | |
| | | <!-- swagger --> |
| | | <dependency> |
| | | <dependency> |
| | | <groupId>com.github.xiaoymin</groupId> |
| | | <artifactId>knife4j-spring-boot-starter</artifactId> |
| | | <version>3.0.3</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>io.springfox</groupId> |
| | | <artifactId>springfox-boot-starter</artifactId> |
| | | <version>3.0.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.swagger.core.v3</groupId> |
| | | <artifactId>swagger-annotations</artifactId> |
| | | <version>2.1.5</version> |
| | | </dependency> |
| | | <!-- lombok --> |
| | | <dependency> |
| | | <groupId>javax.validation</groupId> |
| | |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency>--> |
| | | <dependency> |
| | | <groupId>com.google.ortools</groupId> |
| | | <artifactId>ortools-java</artifactId> |
| | | <version>9.14.6206</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | </project> |