只要在pom里加如下, install的时候 加mvn -P jdk1.7 ,会出现2个包
<profiles>
<profile>
<id>jdk1.7</id>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>1.7</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<java.version>1.7</java.version>
</properties>
</profile>
</profiles>