| | |
| | | <artifactId>rsf</artifactId> |
| | | <version>1.0.0</version> |
| | | </parent> |
| | | |
| | | <artifactId>rsf-open-api</artifactId> |
| | | |
| | | <packaging>jar</packaging> |
| | | <properties> |
| | | <maven.compiler.source>17</maven.compiler.source> |
| | | <maven.compiler.target>17</maven.compiler.target> |
| | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>com.vincent</groupId> |
| | |
| | | <version>1.0.0</version> |
| | | </dependency> |
| | | </dependencies> |
| | | <build> |
| | | <finalName>rsf-open-api</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-resources-plugin</artifactId> |
| | | <configuration> |
| | | <encoding>UTF-8</encoding> |
| | | <nonFilteredFileExtensions> |
| | | <nonFilteredFileExtension>xls</nonFilteredFileExtension> |
| | | <nonFilteredFileExtension>xlsx</nonFilteredFileExtension> |
| | | <nonFilteredFileExtension>zip</nonFilteredFileExtension> |
| | | </nonFilteredFileExtensions> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |