| | |
| | | |
| | | <build> |
| | | <plugins> |
| | | |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>2.5.15</version> |
| | | <configuration> |
| | | |
| | | <includeSystemScope>true</includeSystemScope> |
| | | <mainClass>com.ruoyi.RuoYiApplication</mainClass> |
| | | <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
| | | </configuration> |
| | | <executions> |
| | |
| | | <configuration> |
| | | <source>1.8</source> |
| | | <target>1.8</target> |
| | | <encoding>UTF-8</encoding> |
| | | <!-- <compilerArgs>--> |
| | | <!-- <arg>-XDignore.symbol.file</arg>--> |
| | | <!-- </compilerArgs>--> |
| | | <!-- <fork>true</fork>--> |
| | | </configuration> |
| | | </plugin> |
| | | |
| | | </plugins> |
| | | |
| | | <finalName>${project.artifactId}</finalName> |
| | | </build> |
| | | |