|
@@ -9,7 +9,7 @@
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>alien-second</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <version>1.0.0</version>
|
|
|
<name>alien-second</name>
|
|
|
<description>爱丽恩二手项目</description>
|
|
|
|
|
@@ -201,31 +201,21 @@
|
|
|
<dependency>
|
|
|
<groupId>com.auth0</groupId>
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
- <version>3.4.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- <dependency>-->
|
|
|
- <!-- <groupId>org.bytedeco</groupId>-->
|
|
|
- <!-- <artifactId>javacv-platform</artifactId>-->
|
|
|
- <!-- <version>1.5.5</version> <!– 请使用最新版本 –>-->
|
|
|
- <!-- </dependency>-->
|
|
|
-
|
|
|
<dependency>
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
- <version>4.40.8.ALL</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
|
- <version>3.1.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.netease.yidun</groupId>
|
|
|
<artifactId>yidun-java-sdk</artifactId>
|
|
|
- <version>1.4.11</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
@@ -276,7 +266,6 @@
|
|
|
<groupId>shop.alien</groupId>
|
|
|
<artifactId>alien-util</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
- <scope>compile</scope>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
@@ -285,31 +274,51 @@
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>3.8.1</version>
|
|
|
- <configuration>
|
|
|
- <source>1.8</source>
|
|
|
- <target>1.8</target>
|
|
|
- <encoding>UTF-8</encoding>
|
|
|
- </configuration>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <version>3.1.2</version> <!-- 使用最新版本 -->
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>copy-dependencies</id>
|
|
|
+ <phase>prepare-package</phase> <!-- 在package之前执行 -->
|
|
|
+ <goals>
|
|
|
+ <goal>copy-dependencies</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <outputDirectory>${project.build.directory}/lib</outputDirectory> <!-- 指定输出目录 -->
|
|
|
+ <includeScope>runtime</includeScope> <!-- 仅包含运行时依赖 -->
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
<configuration>
|
|
|
<mainClass>shop.alien.second.AlienSecondApplication</mainClass>
|
|
|
- <skip>true</skip>
|
|
|
+ <layout>ZIP</layout>
|
|
|
+ <includes>
|
|
|
+ <include>
|
|
|
+ <groupId>nothing</groupId>
|
|
|
+ <artifactId>nothing</artifactId>
|
|
|
+ </include>
|
|
|
+ </includes>
|
|
|
</configuration>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
- <id>repackage</id>
|
|
|
<goals>
|
|
|
<goal>repackage</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>8</source>
|
|
|
+ <target>8</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|