| | |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | <groupId>com.doumee</groupId> |
| | | <artifactId>lianhelihya</artifactId> |
| | | <artifactId>lianhelihua</artifactId> |
| | | <version>1.0.0-SNAPSHOT</version> |
| | | <packaging>jar</packaging> |
| | | <name>lianhelihua</name> |
| | |
| | | <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> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>lianhelihua</finalName> |
| | | <resources> |
| | | <resource> |
| | | <directory>src/main/resources</directory> |
| | |
| | | <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> |