| | |
| | | |
| | | <dependencies> |
| | | |
| | | <!-- Poi-tl Word 模板引擎--> |
| | | <dependency> |
| | | <groupId>com.deepoove</groupId> |
| | | <artifactId>poi-tl</artifactId> |
| | | <version>1.9.1</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.aspose</groupId> |
| | | <artifactId>aspose-cells</artifactId> |
| | | <version>8.5.2</version> |
| | | <scope>system</scope> |
| | | <systemPath>${project.basedir}/libs/aspose-cells-8.5.2.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.aspose</groupId> |
| | | <artifactId>aspose-words</artifactId> |
| | | <version>14.9.0</version> |
| | | <scope>system</scope> |
| | | <systemPath>${project.basedir}/libs/aspose-words-14.9.0-jdk16.jar</systemPath> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- spring-boot-devtools --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | |
| | | |
| | | <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> |
| | | |