127 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			XML
		
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|          xmlns="http://maven.apache.org/POM/4.0.0"
 | |
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <parent>
 | |
|         <artifactId>bocloud.cloud.plugin</artifactId>
 | |
|         <groupId>com.bocloud</groupId>
 | |
|         <version>6.5.0-LTS-SZ</version>
 | |
|     </parent>
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <artifactId>bocloud.tce.plugin</artifactId>
 | |
| 
 | |
|     <dependencies>
 | |
|         <!-- 腾讯SDK -->
 | |
|         <dependency>
 | |
|             <groupId>com.qcloud</groupId>
 | |
|             <artifactId>qcloud-java-sdk</artifactId>
 | |
|             <version>2.0.7</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.squareup.okhttp</groupId>
 | |
|             <artifactId>okhttp</artifactId>
 | |
|             <version>2.7.5</version>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.qcloud</groupId>
 | |
|             <artifactId>cos_api</artifactId>
 | |
|             <version>5.6.52</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>okio</artifactId>
 | |
|                     <groupId>com.squareup.okio</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.data</groupId>
 | |
|             <artifactId>spring-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.itextpdf</groupId>
 | |
|             <artifactId>itextpdf</artifactId>
 | |
|             <version>5.5.10</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.itextpdf</groupId>
 | |
|             <artifactId>itext-asian</artifactId>
 | |
|             <version>5.2.0</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.jsonwebtoken</groupId>
 | |
|             <artifactId>jjwt</artifactId>
 | |
|             <version>0.9.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.poi</groupId>
 | |
|             <artifactId>poi</artifactId>
 | |
|             <version>3.16</version><!--$NO-MVN-MAN-VER$ -->
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.poi</groupId>
 | |
|             <artifactId>poi-ooxml</artifactId>
 | |
|             <version>3.16</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>net.sf.jopt-simple</groupId>
 | |
|             <artifactId>jopt-simple</artifactId>
 | |
|             <version>5.0.4</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.amqp</groupId>
 | |
|             <artifactId>spring-rabbit</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.yaml</groupId>
 | |
|             <artifactId>snakeyaml</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba</groupId>
 | |
|             <artifactId>druid</artifactId>
 | |
|         </dependency>
 | |
| <!--        <dependency>-->
 | |
| <!--            <groupId>org.springframework.boot</groupId>-->
 | |
| <!--            <artifactId>spring-boot-starter-quartz</artifactId>-->
 | |
| <!--        </dependency>-->
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <!--把当前项目所有的依赖打包到target目录下的lib文件夹下 -->
 | |
|             <plugin>
 | |
|                 <groupId>com.gitee.starblues</groupId>
 | |
|                 <artifactId>spring-brick-maven-packager</artifactId>
 | |
|                 <configuration>
 | |
|                     <mode>${plugin.build.mode}</mode>
 | |
|                     <pluginInfo>
 | |
|                         <id>tce</id>
 | |
|                         <bootstrapClass>com.bocloud.tce.plugin.Application</bootstrapClass>
 | |
|                         <version>6.5.0-LTS-SZ</version>
 | |
|                         <provider>tce</provider>
 | |
|                         <description>tce纳管插件</description>
 | |
|                         <configFileName>application.yml</configFileName>
 | |
|                     </pluginInfo>
 | |
|                     <prodConfig>
 | |
|                         <packageType>jar</packageType>
 | |
|                         <fileName>${project.artifactId}-${project.version}</fileName>
 | |
|                     </prodConfig>
 | |
|                     <encryptConfig>
 | |
|                         <aes>
 | |
|                             <secretKey>mmfvXes1XckCi8F/y9i0uQ==</secretKey>
 | |
|                         </aes>
 | |
|                     </encryptConfig>
 | |
|                 </configuration>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>repackage</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| </project> |