| | |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.microsoft.sqlserver</groupId> |
| | | <artifactId>mssql-jdbc</artifactId> |
| | | <version>9.4.0.jre8</version> |
| | | <artifactId>mssql-jdbc</artifactId> |
| | | </dependency> |
| | | <!-- 核心模块--> |
| | | <dependency> |
| | |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>2.5.15</version> |
| | | <version>2.5.14</version> |
| | | <configuration> |
| | | <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
| | | <mainClass>com.ruoyi.RuoYiApplication</mainClass> |
| | | </configuration> |
| | | <executions> |
| | | <execution> |
| | |
| | | <finalName>${project.artifactId}</finalName> |
| | | </build> |
| | | |
| | | <profiles> |
| | | <profile> |
| | | <id>dev</id> |
| | | <properties> |
| | | <profiles.active>dev</profiles.active> |
| | | </properties> |
| | | <activation> |
| | | <activeByDefault>true</activeByDefault> |
| | | </activation> |
| | | </profile> |
| | | <profile> |
| | | <id>test</id> |
| | | <properties> |
| | | <profiles.active>test</profiles.active> |
| | | </properties> |
| | | </profile> |
| | | <profile> |
| | | <id>prod</id> |
| | | <properties> |
| | | <profiles.active>prod</profiles.active> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |
| | | </project> |