Browse Source

Set source/target version to 1.6 for int. tests

pull/38/head
Phillip Webb 13 years ago
parent
commit
b1ebec3781
  1. 9
      spring-boot-tools/spring-boot-loader/src/it/executable-jar/pom.xml
  2. 9
      spring-boot-tools/spring-boot-loader/src/it/executable-war/pom.xml

9
spring-boot-tools/spring-boot-loader/src/it/executable-jar/pom.xml

@ -8,6 +8,15 @@ @@ -8,6 +8,15 @@
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>

9
spring-boot-tools/spring-boot-loader/src/it/executable-war/pom.xml

@ -8,6 +8,15 @@ @@ -8,6 +8,15 @@
<packaging>war</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>

Loading…
Cancel
Save