| | |
| | | <poi.version>5.0.0</poi.version> |
| | | <jjwt.version>0.9.1</jjwt.version> |
| | | </properties> |
| | | |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>com.azure.spring</groupId> |
| | | <artifactId>spring-cloud-azure-dependencies</artifactId> |
| | | <version>4.19.0</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | <dependencies> |
| | | <!-- Spring Boot --> |
| | | <dependency> |
| | |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-mail</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.bouncycastle</groupId> |
| | | <artifactId>bcprov-jdk15on</artifactId> |
| | | <version>1.60</version> |
| | | </dependency> |
| | | <!-- <dependency> |
| | | <groupId>com.azure.spring</groupId> |
| | | <artifactId>spring-cloud-azure-starter-storage-blob</artifactId> |
| | | </dependency>--> |
| | | <dependency> |
| | | <groupId>com.azure</groupId> |
| | | <artifactId>azure-storage-blob</artifactId> |
| | | <version>12.14.1</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | |
| | | <mainClass>com.doumee.LianhelihuaApplication</mainClass> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <version>3.1</version> |
| | | <configuration> |
| | | <source>${java.version}</source> |
| | | <target>${java.version}</target> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-resources-plugin</artifactId> |
| | | <configuration> |
| | | <delimiters> |
| | | <delimiter>@</delimiter> |
| | | </delimiters> |
| | | <useDefaultDelimiters>false</useDefaultDelimiters> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | |
| | | </build> |
| | | |
| | | <profiles> |
| | | <profile> |
| | | <id>dev</id> |
| | | <properties> |
| | | <spring.active>dev</spring.active> |
| | | </properties> |
| | | <activation> |
| | | <activeByDefault>true</activeByDefault> |
| | | </activation> |
| | | </profile> |
| | | <profile> |
| | | <id>test</id> |
| | | <properties> |
| | | <spring.active>test</spring.active> |
| | | </properties> |
| | | </profile> |
| | | <profile> |
| | | <id>pro</id> |
| | | <properties> |
| | | <spring.active>pro</spring.active> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |
| | | </project> |