|
|
|
@ -246,28 +246,49 @@
|
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<!-- <build>-->
|
|
|
|
|
<!-- <plugins>-->
|
|
|
|
|
<!-- <plugin>-->
|
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
|
|
|
<!-- <version>${spring.boot.version}</version> <!– 如果 spring.boot.version 版本修改,则这里也要跟着修改 –>-->
|
|
|
|
|
<!-- </plugin>-->
|
|
|
|
|
<!-- <plugin>-->
|
|
|
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
|
|
|
<!-- <configuration>-->
|
|
|
|
|
<!-- <source>1.8</source>-->
|
|
|
|
|
<!-- <target>1.8</target>-->
|
|
|
|
|
<!-- <encoding>UTF-8</encoding>-->
|
|
|
|
|
<!-- <optimize>false</optimize>-->
|
|
|
|
|
<!-- <debug>false</debug>-->
|
|
|
|
|
<!-- <showDeprecation>false</showDeprecation>-->
|
|
|
|
|
<!-- <showWarnings>true</showWarnings>-->
|
|
|
|
|
<!-- <compilerArguments>-->
|
|
|
|
|
<!-- <bootclasspath>${java.home}/lib/rt.jar${path.separator}${java.home}/lib/jce.jar</bootclasspath>-->
|
|
|
|
|
<!-- </compilerArguments>-->
|
|
|
|
|
<!-- </configuration>-->
|
|
|
|
|
<!-- </plugin>-->
|
|
|
|
|
<!-- </plugins>-->
|
|
|
|
|
<!-- </build>-->
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- 打包 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>${spring.boot.version}</version> <!-- 如果 spring.boot.version 版本修改,则这里也要跟着修改 -->
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<optimize>false</optimize>
|
|
|
|
|
<debug>false</debug>
|
|
|
|
|
<showDeprecation>false</showDeprecation>
|
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
|
<compilerArguments>
|
|
|
|
|
<bootclasspath>${java.home}/lib/rt.jar${path.separator}${java.home}/lib/jce.jar</bootclasspath>
|
|
|
|
|
</compilerArguments>
|
|
|
|
|
<fork>true</fork>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|