| | |
| | | <version>2.2.10</version> |
| | | </dependency> |
| | | <!--阿里云物联网 --> |
| | | <!--添加minio的依赖--> |
| | | <dependency> |
| | | <groupId>io.minio</groupId> |
| | | <artifactId>minio</artifactId> |
| | | <version>7.1.0</version> |
| | | <scope>system</scope> |
| | | <systemPath>${project.basedir}/minio-7.1.0-all.jar</systemPath> |
| | | <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> |