You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			126 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
		
		
			
		
	
	
			126 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
| 
											2 years ago
										 | <?xml version="1.0" encoding="UTF-8"?> | ||
|  | <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
|  |          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
|  |          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>org.ils.file</groupId> | ||
|  |     <artifactId>ils-file-storage</artifactId> | ||
|  |     <version>1.0</version> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <maven.compiler.source>8</maven.compiler.source> | ||
|  |         <maven.compiler.target>8</maven.compiler.target> | ||
|  |         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|  |     </properties> | ||
|  |     <parent> | ||
|  |         <groupId>org.springframework.boot</groupId> | ||
|  |         <artifactId>spring-boot-starter-parent</artifactId> | ||
|  |         <version>2.6.6</version> | ||
|  |         <relativePath/> | ||
|  |     </parent> | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-test</artifactId> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-web</artifactId> | ||
|  |         </dependency> | ||
|  |         <!--文件--> | ||
|  |         <dependency> | ||
|  |             <groupId>cn.xuyanwu</groupId> | ||
|  |             <artifactId>spring-file-storage</artifactId> | ||
|  |             <version>1.0.0</version> | ||
|  |         </dependency> | ||
|  |         <!--aliyun-sdk-oss--> | ||
|  |         <dependency> | ||
|  |             <groupId>com.aliyun.oss</groupId> | ||
|  |             <artifactId>aliyun-sdk-oss</artifactId> | ||
|  |             <version>3.16.1</version> | ||
|  |         </dependency> | ||
|  |         <!--minio--> | ||
|  |         <dependency> | ||
|  |             <groupId>io.minio</groupId> | ||
|  |             <artifactId>minio</artifactId> | ||
|  |             <version>8.5.2</version> | ||
|  |         </dependency> | ||
|  |         <!--hutool--> | ||
|  |         <dependency> | ||
|  |             <groupId>cn.hutool</groupId> | ||
|  |             <artifactId>hutool-all</artifactId> | ||
|  |             <version>5.8.0</version> | ||
|  |         </dependency> | ||
|  |         <!-- Lombok --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.projectlombok</groupId> | ||
|  |             <artifactId>lombok</artifactId> | ||
|  |             <version>1.18.22</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>junit</groupId> | ||
|  |             <artifactId>junit</artifactId> | ||
|  |             <version>4.13.2</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <!--swagger2--> | ||
|  |         <dependency> | ||
|  |             <groupId>io.springfox</groupId> | ||
|  |             <artifactId>springfox-swagger2</artifactId> | ||
|  |             <version>2.9.2</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.github.xiaoymin</groupId> | ||
|  |             <artifactId>swagger-bootstrap-ui</artifactId> | ||
|  |             <version>1.9.6</version> | ||
|  |         </dependency> | ||
|  |         <!--fastjson--> | ||
|  |         <dependency> | ||
|  |             <groupId>com.alibaba</groupId> | ||
|  |             <artifactId>fastjson</artifactId> | ||
|  |             <version>1.2.83</version> | ||
|  |         </dependency> | ||
|  |         <!--mysql--> | ||
|  |         <dependency> | ||
|  |             <groupId>mysql</groupId> | ||
|  |             <artifactId>mysql-connector-java</artifactId> | ||
|  |             <version>8.0.27</version> | ||
|  |         </dependency> | ||
|  |         <!--mybatis-plus--> | ||
|  |         <dependency> | ||
|  |             <groupId>com.baomidou</groupId> | ||
|  |             <artifactId>mybatis-plus-boot-starter</artifactId> | ||
|  |             <version>3.5.1</version> | ||
|  |         </dependency> | ||
|  |         <!--druid--> | ||
|  |         <dependency> | ||
|  |             <groupId>com.alibaba</groupId> | ||
|  |             <artifactId>druid-spring-boot-starter</artifactId> | ||
|  |             <version>1.1.22</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  |     <build> | ||
|  |         <!--打包成jar包时的名字--> | ||
|  |         <finalName>ilsEngineService-1.0</finalName> | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.springframework.boot</groupId> | ||
|  |                 <artifactId>spring-boot-maven-plugin</artifactId> | ||
|  |                 <configuration> | ||
|  |                     <mainClass> | ||
|  |                         org.ils.file.IlsFileStorageApplication | ||
|  |                     </mainClass> | ||
|  |                 </configuration> | ||
|  |                 <executions> | ||
|  |                     <execution> | ||
|  |                         <goals> | ||
|  |                             <goal>repackage</goal> | ||
|  |                         </goals> | ||
|  |                     </execution> | ||
|  |                 </executions> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | </project> |