后端:去除 product 模块的 setting getting 方法

This commit is contained in:
YunaiV 2019-04-06 21:37:27 +08:00
parent 652fc37489
commit 5b628c8605
2 changed files with 12 additions and 2 deletions

View File

@ -35,7 +35,7 @@
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>compile</scope>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>cn.iocoder.mall</groupId>
@ -52,4 +52,4 @@
</dependencies>
</project>
</project>

10
pom.xml
View File

@ -135,6 +135,7 @@
<build>
<pluginManagement>
<plugins>
<!-- 提供给 mapstruct 使用 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@ -156,6 +157,15 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<!-- 打包 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>