filesecurity-parent
- Java 8+ and
- Spring Boot 1.5.7+
- Maven 3.3.9+
<dependency>
<groupId>top.huangliusong2019</groupId>
<artifactId>filesecurity-parent</artifactId>
<version>1.1.4-SNAPSHOT</version>
</dependency>
mvn clean package deploy
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 29.995 s
[INFO] Finished at: 2019-07-26T23:13:11+08:00
[INFO] Final Memory: 16M/210M
[INFO] ------------------------------------------------------------------------
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<!-- Bind the source plug-in to Maven's life cycle and perform the goal of the bound source after the life cycle -->
<executions>
<execution>
<!-- Bind the source plug-in to Maven lifecycle -->
<phase>compile</phase>
<!--Execute goals for the bound source plug-in after the lifecycle -->
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>