feature (作价和环境部署):完成住宅租赁迁移

1. 挂牌案例下载
2. 挂牌案例清洗
3. 成交案例下载
4. 成交案例清洗
5. 住宅租赁基价计算
6. repakcage name
7. 配置环境部署
This commit is contained in:
purple
2020-07-07 15:05:21 +08:00
parent 1c2e15016a
commit 2cc0e79d7a
370 changed files with 1334 additions and 1300 deletions

View File

@ -89,7 +89,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
<!-- <scope>runtime</scope>-->
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
@ -261,9 +261,25 @@
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>repackage</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<configuration>
<fork>true</fork> <!-- 如果没有该配置devtools不会生效 -->
</configuration>