Skip to content

Commit a2531d0

Browse files
committed
remove mybatis generator
1 parent 1f1b585 commit a2531d0

File tree

3 files changed

+3
-301
lines changed

3 files changed

+3
-301
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,9 @@
146146
<artifactId>maven-compiler-plugin</artifactId>
147147
<version>2.3.2</version>
148148
<configuration>
149-
<source>1.6</source>
150-
<target>1.6</target>
149+
<!-- 一般而言,target与source是保持一致的,但是,有时候为了让程序能在其他版本的jdk中运行(对于低版本目标jdk,源代码中需要没有使用低版本jdk中不支持的语法),会存在target不同于source的情况 -->
150+
<source>1.8</source><!-- 源代码使用的开发版本 -->
151+
<target>1.8</target> <!-- 需要生成的目标class文件的编译版本 -->
151152
</configuration>
152153
</plugin>
153154
</plugins>

src/main/resources/config/generatorConfig.properties

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/main/resources/config/generatorConfig.xml

Lines changed: 0 additions & 290 deletions
This file was deleted.

0 commit comments

Comments
 (0)