bocloud.cos/bocloud.cos.booter/pom.xml

225 lines
7.3 KiB
XML

<?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">
<parent>
<artifactId>bocloud.cos</artifactId>
<groupId>com.bocloud</groupId>
<version>5.5.0-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bocloud.cos.booter</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
</dependency>
<!-- 构建Restful API -->
<dependency>
<groupId>com.spring4all</groupId>
<artifactId>swagger-spring-boot-starter</artifactId>
<version>1.9.1.RELEASE</version>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>swagger-bootstrap-ui</artifactId>
<version>1.9.6</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.bre.service</artifactId>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.cos.service</artifactId>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.cos.core</artifactId>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.cos.entity</artifactId>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.boot.common</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.snmp4j</groupId>
<artifactId>snmp4j</artifactId>
<version>3.1.0</version>
</dependency>
<!--宋体 -->
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.font.song</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.10.0</version>
</dependency>
<!--导出相关 开始 -->
<!--itext pdf -->
<!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.11</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
<version>5.2.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.itextpdf.tool/xmlworker -->
<dependency>
<groupId>com.itextpdf.tool</groupId>
<artifactId>xmlworker</artifactId>
<version>5.5.11</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
</dependency>
<!-- <dependency> -->
<!-- <groupId>org.apache.poi</groupId> -->
<!-- <artifactId>poi</artifactId> -->
<!-- <version>3.15</version> -->
<!-- </dependency> -->
<!-- table to excel tool -->
<dependency>
<groupId>me.chyxion</groupId>
<artifactId>table-to-xls</artifactId>
<version>0.0.1-RELEASE</version>
</dependency>
<!--导出相关结束 -->
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<!-- <plugin> -->
<!-- <groupId>com.github.wvengen</groupId> -->
<!-- <artifactId>proguard-maven-plugin</artifactId> -->
<!-- <version>2.2.0</version> -->
<!-- <executions> -->
<!-- <execution> -->
<!-- <phase>package</phase> -->
<!-- <goals> -->
<!-- <goal>proguard</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
<!-- <configuration> -->
<!-- <proguardVersion>6.2.2</proguardVersion> -->
<!-- <injar>${project.build.finalName}.jar</injar> -->
<!-- <outjar>${project.build.finalName}.jar</outjar> -->
<!-- <obfuscate>true</obfuscate> -->
<!-- <proguardInclude>./proguard.cfg</proguardInclude> -->
<!-- <options> -->
<!-- 不做收缩(删除注释、未被引用代码) -->
<!-- <option>-dontshrink</option> -->
<!-- 不做优化(变更代码实现逻辑) -->
<!-- <option>-dontoptimize</option> -->
<!-- <option>-adaptclassstrings</option> -->
<!-- 不混淆所有特殊的类 -->
<!-- <option>-keepattributes Exceptions,InnerClasses,Signature,Deprecated, -->
<!-- SourceFile,LineNumberTable,*Annotation*,EnclosingMethod -->
<!-- </option> -->
<!-- <option>-keepnames interface **</option> -->
<!-- <option>-keepparameternames</option> -->
<!-- <option>-keep class !com.bocloud.*.booter.*.* { *; }</option> -->
<!-- <option>-keep class io.netty.** { *; }</option> -->
<!-- <option>-keep class javax.** { *; }</option> -->
<!-- <option>-keep interface * extends * { *; }</option> -->
<!-- <option>-keepclassmembers class * { -->
<!-- @org.springframework.beans.factory.annotation.Autowired *; -->
<!-- @org.springframework.beans.factory.annotation.Value *; -->
<!-- @org.springframework.web.bind.annotation.PostMapping *; -->
<!-- @org.springframework.web.bind.annotation.DeleteMapping *; -->
<!-- @org.springframework.web.bind.annotation.GetMapping *; -->
<!-- @org.springframework.web.bind.annotation.PutMapping *; -->
<!-- } -->
<!-- </option> -->
<!-- </options> -->
<!-- <libs> -->
<!-- <lib>${java.home}/lib/rt.jar</lib> -->
<!-- <lib>${java.home}/lib/jce.jar</lib> -->
<!-- </libs> -->
<!-- </configuration> -->
<!-- <dependencies> -->
<!-- <dependency> -->
<!-- <groupId>net.sf.proguard</groupId> -->
<!-- <artifactId>proguard-base</artifactId> -->
<!-- <version>6.2.2</version> -->
<!-- <scope>runtime</scope> -->
<!-- </dependency> -->
<!-- </dependencies> -->
<!-- </plugin> -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.8.RELEASE</version>
<configuration>
<mainClass>com.bocloud.cos.booter.Application</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>