filesecurity-spring-boot-starter
file-security-spring-boot will help you use file-security with Spring Boot
- Java 8+ and
- Spring Boot 1.5.7+
- Maven 3.3.9+
<dependency>
<groupId>top.huangliusong2019</groupId>
<artifactId>filesecurity-spring-boot-starter</artifactId>
<version>1.1.3-SNAPSHOT</version>
</dependency>
<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>