Commit 8368ef96 by Simon Cheng

mdev发布测试

parent 895b2dfe
...@@ -163,4 +163,18 @@ ...@@ -163,4 +163,18 @@
<version>3.9</version> <version>3.9</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<plugins>
<!-- Compiler 插件, 设定JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
</project> </project>
...@@ -80,8 +80,8 @@ ...@@ -80,8 +80,8 @@
<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>${java.version}</source> <source>1.8</source>
<target>${java.version}</target> <target>1.8</target>
<showWarnings>true</showWarnings> <showWarnings>true</showWarnings>
</configuration> </configuration>
</plugin> </plugin>
......
...@@ -22,4 +22,18 @@ ...@@ -22,4 +22,18 @@
<version>1.2.47</version> <version>1.2.47</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<plugins>
<!-- Compiler 插件, 设定JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
</project> </project>
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