Welcome

首页 / 软件开发 / JAVA / Maven install: java: -source 1.5 中不支持switch 中存在字符串

使用maven命令打包项目的时候,报错:java: -source 1.5 中不支持switch 中存在字符串


解决办法:


在pom文件中加入如下代码:





<build>

<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-compiler-plugin</artifactId>

<configuration>

<source>1.7</source>

<target>1.7</target>

<encoding>UTF-8</encoding>

</configuration>

</plugin> 

</plugins>

</build>

原因:jdk1.7版本以前,是不支持switch是字符串形式的。