| | |
| | | <version>3.13.1</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.github.jsqlparser</groupId> |
| | | <artifactId>jsqlparser</artifactId> |
| | | <version>4.3</version> |
| | | <groupId>com.alipay.sdk</groupId> |
| | | <artifactId>alipay-sdk-java</artifactId> |
| | | <version>4.17.9.ALL</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>cn.dreampie</groupId> |
| | | <artifactId>jfinal-utils</artifactId> |
| | | <version>0.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>easyexcel</artifactId> |
| | | <version>2.2.10</version> |
| | | </dependency> |
| | | <!--阿里云物联网 --> |
| | | <!--添加minio的依赖--> |
| | | <dependency> |
| | | <groupId>io.minio</groupId> |
| | | <artifactId>minio</artifactId> |
| | | <version>7.1.0</version> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>com.google.guava</groupId> |
| | | <artifactId>guava</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>net.minidev</groupId> |
| | | <artifactId>json-smart</artifactId> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils --> |
| | | <dependency> |
| | | <groupId>eu.bitwalker</groupId> |
| | | <artifactId>UserAgentUtils</artifactId> |
| | | <version>1.21</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.assertj</groupId> |
| | | <artifactId>assertj-core</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.github.binarywang</groupId> |
| | | <artifactId>weixin-java-miniapp</artifactId> |
| | | <version>4.1.0</version> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>com.google.guava</groupId> |
| | | <artifactId>guava</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <!-- Maven控制Spring Profile --> |
| | | <profiles> |
| | | <!--默认开启dev--> |
| | | <profile> |
| | | <id>dev</id> |
| | | <properties> |
| | | <profileActive>dev</profileActive> |
| | | </properties> |
| | | </profile> |
| | | <!--测试配置--> |
| | | <profile> |
| | | <id>test</id> |
| | | <properties> |
| | | <profileActive>test</profileActive> |
| | | </properties> |
| | | </profile> |
| | | <!--测试配置--> |
| | | <profile> |
| | | <id>docker</id> |
| | | <properties> |
| | | <profileActive>docker</profileActive> |
| | | </properties> |
| | | </profile> |
| | | <!--生产配置--> |
| | | <profile> |
| | | <id>prod</id> |
| | | <activation> |
| | | <activeByDefault>true</activeByDefault> |
| | | </activation> |
| | | <properties> |
| | | <profileActive>prod</profileActive> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |
| | | <build> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <configuration> |
| | | <executable>true</executable> |
| | | <includeSystemScope>true</includeSystemScope> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |