|
@@ -0,0 +1,551 @@
|
|
|
+<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/maven-v4_0_0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>com.yfhl</groupId>
|
|
|
+ <artifactId>yf-exam-api</artifactId>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+ <version>1.0</version>
|
|
|
+ <name>yf-exam-api</name>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.1.4.RELEASE</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <fastjson.version>1.2.83</fastjson.version>
|
|
|
+ <oss.version>3.7.0</oss.version>
|
|
|
+ <aliyun.sdk.version>4.4.9</aliyun.sdk.version>
|
|
|
+ <swagger.version>2.9.2</swagger.version>
|
|
|
+ <dozer.version>5.5.1</dozer.version>
|
|
|
+ <apache.commons.version>3.8</apache.commons.version>
|
|
|
+ <mysql.driver.version>8.0.11</mysql.driver.version>
|
|
|
+ <mybatis-plus.version>3.3.2</mybatis-plus.version>
|
|
|
+ <lombok.version>1.18.4</lombok.version>
|
|
|
+ <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
|
|
|
+ <alicloud.version>2.1.1.RELEASE</alicloud.version>
|
|
|
+ <poi.version>4.1.2</poi.version>
|
|
|
+ <log4j2.version>2.16.0</log4j2.version>
|
|
|
+ <shiro.version>1.8.0</shiro.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 设定仓库 -->
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+
|
|
|
+ <repository>
|
|
|
+ <id>aliyun-repos</id>
|
|
|
+ <url>https://maven.aliyun.com/repository/public</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </repository>
|
|
|
+
|
|
|
+ <repository>
|
|
|
+ <id>sonatype-repos-s</id>
|
|
|
+ <name>Sonatype Repository</name>
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </releases>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </repository>
|
|
|
+
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>aliyun-repos</id>
|
|
|
+ <url>https://maven.aliyun.com/repository/public</url>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
+ <artifactId>aspectjweaver</artifactId>
|
|
|
+ <version>1.9.5</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.dozer</groupId>
|
|
|
+ <artifactId>dozer</artifactId>
|
|
|
+ <version>${dozer.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-collections</groupId>
|
|
|
+ <artifactId>commons-collections</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus</artifactId>
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql.driver.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.dom4j</groupId>
|
|
|
+ <artifactId>dom4j</artifactId>
|
|
|
+ <version>2.1.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
+ <artifactId>knife4j-spring-ui</artifactId>
|
|
|
+ <version>2.0.9</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- poi office -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--JWT-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.auth0</groupId>
|
|
|
+ <artifactId>java-jwt</artifactId>
|
|
|
+ <version>3.7.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
+ <version>4.4.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-core</artifactId>
|
|
|
+ <version>2.9.8</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.9.8</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- WEB支持 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 缓存支持 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-cache</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot Redis支持 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--spring quartz依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--shiro-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-spring-boot-starter</artifactId>
|
|
|
+ <version>${shiro.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- shiro-redis -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.crazycake</groupId>
|
|
|
+ <artifactId>shiro-redis</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-core</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 文件转换,通过OpenOffice或LibreOffice来转换 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jodconverter</groupId>
|
|
|
+ <artifactId>jodconverter-core</artifactId>
|
|
|
+ <version>4.4.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jodconverter</groupId>
|
|
|
+ <artifactId>jodconverter-spring-boot-starter</artifactId>
|
|
|
+ <version>4.4.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jodconverter</groupId>
|
|
|
+ <artifactId>jodconverter-local</artifactId>
|
|
|
+ <version>4.4.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- WebSocket用于文件阅读 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
+ <version>4.4.9</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- OSS文件上传及文档转换 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
+ <version>${oss.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>aliyun-java-sdk-imm</artifactId>
|
|
|
+ <version>1.22.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 阿里云视频转码 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>aliyun-java-sdk-mts</artifactId>
|
|
|
+ <version>2.5.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 直播SDK -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>aliyun-java-sdk-live</artifactId>
|
|
|
+ <version>3.9.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 腾讯云 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qcloud</groupId>
|
|
|
+ <artifactId>cos_api</artifactId>
|
|
|
+ <version>5.6.52</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qcloud</groupId>
|
|
|
+ <artifactId>cos-sts_api</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 七牛云 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qiniu</groupId>
|
|
|
+ <artifactId>qiniu-java-sdk</artifactId>
|
|
|
+ <version>[7.4.0, 7.4.99]</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 图形验证码 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.whvcse</groupId>
|
|
|
+ <artifactId>easy-captcha</artifactId>
|
|
|
+ <version>1.6.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>dysmsapi20170525</artifactId>
|
|
|
+ <version>2.0.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>1.2.6</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.11.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 阿里云人脸认证 start -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>tea-openapi</artifactId>
|
|
|
+ <version>0.0.19</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>facebody20191230</artifactId>
|
|
|
+ <version>1.0.19</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 用于上传临时文件的 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>viapi-utils</artifactId>
|
|
|
+ <version>1.0.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
+ <artifactId>aliyun-java-sdk-viapiutils</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 阿里云人脸认证 end -->
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 百度人脸认证 start -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baidu.aip</groupId>
|
|
|
+ <artifactId>java-sdk</artifactId>
|
|
|
+ <version>4.16.2</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-simple</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <!-- 百度人脸认证 end -->
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 微信支付 start -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.wechatpay-apiv3</groupId>
|
|
|
+ <artifactId>wechatpay-apache-httpclient</artifactId>
|
|
|
+ <version>0.2.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 微信支付 end -->
|
|
|
+
|
|
|
+ <!-- 支付宝支付 start -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alipay.sdk</groupId>
|
|
|
+ <artifactId>alipay-sdk-java</artifactId>
|
|
|
+ <version>4.16.11.ALL</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 支付宝支付 end -->
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 腾讯云人脸识别 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.tencentcloudapi</groupId>
|
|
|
+ <artifactId>tencentcloud-sdk-java-iai</artifactId>
|
|
|
+ <version>3.1.471</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 通用工具包 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-poi</artifactId>
|
|
|
+ <version>5.7.17</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 证书模板 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.deepoove</groupId>
|
|
|
+ <artifactId>poi-tl</artifactId>
|
|
|
+ <version>1.10.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 文件工具获取MineType -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.tika</groupId>
|
|
|
+ <artifactId>tika-core</artifactId>
|
|
|
+ <version>2.4.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 获取视频时长 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.googlecode.mp4parser</groupId>
|
|
|
+ <artifactId>isoparser</artifactId>
|
|
|
+ <version>1.1.22</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <finalName>${project.name}</finalName>
|
|
|
+ <defaultGoal>compile</defaultGoal>
|
|
|
+ <plugins>
|
|
|
+
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <version>3.1.2</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>copy-dependencies</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>copy-dependencies</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <!-- 拷贝项目依赖包到libs/目录下 -->
|
|
|
+ <outputDirectory>${project.build.directory}/libs</outputDirectory>
|
|
|
+ <!-- 间接依赖也拷贝 -->
|
|
|
+ <excludeTransitive>false</excludeTransitive>
|
|
|
+ <!-- 带上版本号 -->
|
|
|
+ <stripVersion>false</stripVersion>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>2.1.4.RELEASE</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+
|
|
|
+ <configuration>
|
|
|
+ <layout>ZIP</layout>
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
+ <!-- 调试或者完整打包注释以下内容 -->
|
|
|
+ <!-- <includes>-->
|
|
|
+ <!-- <include>-->
|
|
|
+ <!-- <groupId>non-exists</groupId>-->
|
|
|
+ <!-- <artifactId>non-exists</artifactId>-->
|
|
|
+ <!-- </include>-->
|
|
|
+ <!-- </includes>-->
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.7.0</version>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>2.22.1</version>
|
|
|
+ <configuration>
|
|
|
+ <skipTests>true</skipTests>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
+ <artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
+ <version>1.4.12</version>
|
|
|
+ <configuration>
|
|
|
+ <!-- 阿里镜像仓库 -->
|
|
|
+ <repository>${project.build.finalName}</repository>
|
|
|
+ <buildArgs>
|
|
|
+ <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
|
|
+ </buildArgs>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|