设置mysql自增字段的初始值

tips

Summer Flower posted @ 2013年3月02日 20:33 in 未分类 , 820 阅读
  1. maven构建项目时指定jdk版本

 

<build>
	<plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-compiler-plugin</artifactId>
			<configuration>
				<source>1.6</source>
				<target>1.6</target>
			</configuration>
		</plugin>
	</plugins>
</build>
Avatar_small
Emma 说:
2023年1月13日 22:11

"When you run a maven build, you can specify the jdk version you want to use. This is useful if you have multiple versions of the jdk installed and you want to real estate Calabash use a specific one for your build. To specify the jdk version, use the -Dmaven.compiler.target and -Dmaven.compiler.source properties. For example: mvn -Dmaven.compiler.target=1.8 -Dmaven.compiler.source=1.8 clean package "


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter