|
@@ -0,0 +1,542 @@
|
|
|
+<?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>com.benyun</groupId>
|
|
|
+ <artifactId>benyun</artifactId>
|
|
|
+ <version>9.2.7</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <name>benyun2kingdee</name>
|
|
|
+ <url>http://www.baidu.com</url>
|
|
|
+ <description>犇云2金蝶</description>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.5.13</version>
|
|
|
+ <relativePath/>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
|
+ <shiro.version>1.9.0</shiro.version>
|
|
|
+ <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
|
|
|
+ <mybatis.spring.boot.starter.version>2.2.2</mybatis.spring.boot.starter.version>
|
|
|
+ <pagehelper.spring.boot.starter.version>1.4.1</pagehelper.spring.boot.starter.version>
|
|
|
+ <fastjson.version>1.2.80</fastjson.version>
|
|
|
+ <druid.version>1.2.8</druid.version>
|
|
|
+ <commons.io.version>2.11.0</commons.io.version>
|
|
|
+ <commons.fileupload.version>1.4</commons.fileupload.version>
|
|
|
+ <bitwalker.version>1.21</bitwalker.version>
|
|
|
+ <velocity.version>2.3</velocity.version>
|
|
|
+ <kaptcha.version>2.3.2</kaptcha.version>
|
|
|
+ <swagger.version>3.0.0</swagger.version>
|
|
|
+ <poi.version>4.1.2</poi.version>
|
|
|
+ <oshi.version>6.1.2</oshi.version>
|
|
|
+ <jna.version>5.10.0</jna.version>
|
|
|
+ <lombok.version>1.18.4</lombok.version>
|
|
|
+
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
+ <version>3.11.0</version>
|
|
|
+
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.google.android</groupId>
|
|
|
+ <artifactId>android</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- SpringBoot 核心包 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot 测试 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot 拦截器 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot Web容器 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot集成thymeleaf模板 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- spring-boot-devtools -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Mysql驱动包 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot集成mybatis框架 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>${mybatis.spring.boot.starter.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- pagehelper 分页插件 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>${pagehelper.spring.boot.starter.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 阿里数据库连接池 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>${druid.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 自定义验证注解 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-validation</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 常用工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- io常用工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>${commons.io.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 文件上传工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
+ <version>${commons.fileupload.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Shiro核心框架 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-core</artifactId>
|
|
|
+ <version>${shiro.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Shiro使用Spring框架 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
+ <version>${shiro.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Shiro使用EhCache缓存框架 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-ehcache</artifactId>
|
|
|
+ <version>${shiro.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- thymeleaf模板引擎和shiro框架的整合 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.theborakompanioni</groupId>
|
|
|
+ <artifactId>thymeleaf-extras-shiro</artifactId>
|
|
|
+ <version>${thymeleaf.extras.shiro.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 阿里JSON解析器 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 解析客户端操作系统、浏览器等 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>eu.bitwalker</groupId>
|
|
|
+ <artifactId>UserAgentUtils</artifactId>
|
|
|
+ <version>${bitwalker.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Spring框架基本的核心工具 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-context-support</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--Tlog 日志标记追踪-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.yomahub</groupId>
|
|
|
+ <artifactId>tlog-all-spring-boot-starter</artifactId>
|
|
|
+ <version>1.2.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
+ <version>1.2.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 定时任务 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
+ <artifactId>quartz</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.mchange</groupId>
|
|
|
+ <artifactId>c3p0</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- velocity代码生成使用模板 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
+ <artifactId>velocity-engine-core</artifactId>
|
|
|
+ <version>${velocity.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 验证码 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.penggle</groupId>
|
|
|
+ <artifactId>kaptcha</artifactId>
|
|
|
+ <version>${kaptcha.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Swagger3依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-boot-starter</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ <version>1.6.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 获取系统信息 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.oshi</groupId>
|
|
|
+ <artifactId>oshi-core</artifactId>
|
|
|
+ <version>${oshi.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- excel工具 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--AccessDB 数据库 驱动-->
|
|
|
+ <!-- https://mvnrepository.com/artifact/net.sf.ucanaccess/ucanaccess -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.ucanaccess</groupId>
|
|
|
+ <artifactId>ucanaccess</artifactId>
|
|
|
+ <version>5.0.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <version>1.7.25</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--SQLSERVER-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
+ <artifactId>sqljdbc4</artifactId>
|
|
|
+ <version>4.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--smb协议获取共享文件夹内容-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>jcifs</groupId>
|
|
|
+ <artifactId>jcifs</artifactId>
|
|
|
+ <version>1.3.17</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- @JSONField(name = "Creator")
|
|
|
+ 只得老老实实的把所有字段全部加上@JSONField注解,防止转json时,会自动转成首字母小写的字段 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.47</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--redis依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--JSON 数据和 Java 对象之间进行转换。-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
+ <version>2.10.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- junit -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.13.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hamcrest</groupId>
|
|
|
+ <artifactId>hamcrest-parent</artifactId>
|
|
|
+ <version>1.3</version>
|
|
|
+ <type>pom</type>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--添加的本地的外部jar包依赖-->
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <!–groupId、artifactId、version为自定义,groupId与artifactId但是不能重名–>-->
|
|
|
+<!-- <groupId>JNative</groupId>-->
|
|
|
+<!-- <artifactId>JNative</artifactId>-->
|
|
|
+<!-- <version>1.0</version>-->
|
|
|
+<!-- <scope>system</scope>-->
|
|
|
+<!-- <systemPath>${pom.basedir}/lib/k3cloud-webapi-sdk8.0.6.jar</systemPath>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+
|
|
|
+ <!-- 引入金蝶的 WebAPI SDK -->
|
|
|
+ <!-- mvn install:install-file -Dfile=k3cloud-webapi-sdk7.9.jar -DgroupId=com.kingdee -DartifactId=k3cloud-webapi-sdk -Dversion=7.9 -Dpackaging=jar -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.kingdee</groupId>
|
|
|
+ <artifactId>k3cloud-webapi-sdk</artifactId>
|
|
|
+ <version>8.0.6</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!-- hutool工具类-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>5.8.10</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
+ <plugins>
|
|
|
+<!-- <plugin>-->
|
|
|
+<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
+<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
|
+<!-- <configuration>-->
|
|
|
+<!-- <fork>true</fork> <!– 如果没有该配置,devtools不会生效 –>-->
|
|
|
+<!-- </configuration>-->
|
|
|
+<!-- </plugin>-->
|
|
|
+ <!-- YUI Compressor (CSS/JS压缩)
|
|
|
+ <plugin>
|
|
|
+ <groupId>net.alchim31.maven</groupId>
|
|
|
+ <artifactId>yuicompressor-maven-plugin</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>prepare-package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>compress</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
+ <jswarn>false</jswarn>
|
|
|
+ <nosuffix>true</nosuffix>
|
|
|
+ <linebreakpos>50000</linebreakpos>
|
|
|
+ <sourceDirectory>src/main/resources/static</sourceDirectory>
|
|
|
+ <force>true</force>
|
|
|
+ <includes>
|
|
|
+ <include>**/*.js</include>
|
|
|
+ <include>**/*.css</include>
|
|
|
+ </includes>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*.min.js</exclude>
|
|
|
+ <exclude>**/*.min.css</exclude>
|
|
|
+ <exclude>**/fileinput.js</exclude>
|
|
|
+ <exclude>**/bootstrap-table/**</exclude>
|
|
|
+ </excludes>
|
|
|
+ </configuration>
|
|
|
+ </plugin> -->
|
|
|
+
|
|
|
+<!-- <plugin>-->
|
|
|
+<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
+<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
|
+<!-- <configuration>-->
|
|
|
+<!-- <includeSystemScope>true</includeSystemScope>-->
|
|
|
+<!-- </configuration>-->
|
|
|
+<!-- <executions>-->
|
|
|
+<!-- <execution>-->
|
|
|
+<!-- <phase>none</phase>-->
|
|
|
+<!-- </execution>-->
|
|
|
+<!-- </executions>-->
|
|
|
+<!-- </plugin>-->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ <compilerArgs>
|
|
|
+ <arg>-parameters</arg>
|
|
|
+ </compilerArgs>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
+ <version>3.1.1</version>
|
|
|
+ <configuration>
|
|
|
+ <archive>
|
|
|
+ <manifest>
|
|
|
+ <addClasspath>true</addClasspath>
|
|
|
+ <classpathPrefix>lib/</classpathPrefix>
|
|
|
+ <mainClass>com.benyun.BenYunApplication</mainClass>
|
|
|
+ </manifest>
|
|
|
+ <manifestEntries>
|
|
|
+ <Class-Path>resources/</Class-Path>
|
|
|
+ </manifestEntries>
|
|
|
+ </archive>
|
|
|
+ <excludes>
|
|
|
+ <exclude>static/**</exclude>
|
|
|
+ <exclude>templates/**</exclude>
|
|
|
+ <exclude>*.setting</exclude>
|
|
|
+ <exclude>*.properties</exclude>
|
|
|
+ <exclude>*.json</exclude>
|
|
|
+ <exclude>*.yml</exclude>
|
|
|
+ <exclude>*.xml</exclude>
|
|
|
+ </excludes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <!--自定义打包插件-->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <version>3.3.0</version>
|
|
|
+ <configuration>
|
|
|
+ <finalName>hospital</finalName>
|
|
|
+ <!--加上下面这一句,上面的finalName是什么,打包出来的目录就叫什么-->
|
|
|
+ <appendAssemblyId>false</appendAssemblyId>
|
|
|
+ <descriptors>
|
|
|
+ <!-- 引用的assembly配置文件,可以用多个,即可以同时打包多个格式的包 -->
|
|
|
+ <descriptor>${project.basedir}/assembly/assembly.xml</descriptor>
|
|
|
+ </descriptors>
|
|
|
+ <outputDirectory>${project.build.directory}/dist/</outputDirectory>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <!-- phase加入package后,则在执行maven package时就可以调用maven-assembly-plugin插件定义的打包方式 -->
|
|
|
+ <execution>
|
|
|
+ <!--名字任意 -->
|
|
|
+ <id>make-assembly</id>
|
|
|
+ <!-- 绑定到package生命周期阶段上 -->
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <!-- 只运行一次 -->
|
|
|
+ <goal>single</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>aliyun nexus</name>
|
|
|
+ <url>https://maven.aliyun.com/repository/public</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>aliyun nexus</name>
|
|
|
+ <url>https://maven.aliyun.com/repository/public</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
+</project>
|