mavenz中的泛型处理

maven编译时出现-source 1.3 中不支持泛型 (请尝试使用 -source 1.5 以启用泛型)

在pom.xml中增加:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>

你可能感兴趣的:(apache,maven,xml)