Commit b592c8c6 authored by liqin's avatar liqin 💬

放开权限按钮

parent 9bb22928
...@@ -234,39 +234,37 @@ ...@@ -234,39 +234,37 @@
<build> <build>
<finalName>chnmuseum-party</finalName> <finalName>chnmuseum-party</finalName>
<pluginManagement> <plugins>
<plugins> <plugin>
<plugin> <groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId>
<artifactId>spring-boot-maven-plugin</artifactId> <configuration>
<configuration> <executable>true</executable>
<executable>true</executable> <fork>true</fork>
<fork>true</fork> <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments> </configuration>
</configuration> </plugin>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-compiler-plugin</artifactId> <configuration>
<configuration> <source>1.8</source>
<source>1.8</source> <target>1.8</target>
<target>1.8</target> <encoding>UTF-8</encoding>
<encoding>UTF-8</encoding> </configuration>
</configuration> </plugin>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId>
<artifactId>maven-surefire-plugin</artifactId> <configuration>
<configuration> <systemPropertyVariables>
<systemPropertyVariables> <swaggerOutputDir>${project.basedir}/src/main/resources/swagger</swaggerOutputDir>
<swaggerOutputDir>${project.basedir}/src/main/resources/swagger</swaggerOutputDir> <asciiDocOutputDir>${project.basedir}/src/main/resources/swagger/swagger</asciiDocOutputDir>
<asciiDocOutputDir>${project.basedir}/src/main/resources/swagger/swagger</asciiDocOutputDir> </systemPropertyVariables>
</systemPropertyVariables> <skip>true</skip>
<skip>true</skip> </configuration>
</configuration> </plugin>
</plugin> </plugins>
</plugins>
</pluginManagement>
<resources> <resources>
<resource> <resource>
<directory>src/main/java</directory> <directory>src/main/java</directory>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment