Skip to content

Commit

Permalink
Cause the functional tests to use Java7 syntax, since they do. We nee…
Browse files Browse the repository at this point in the history
…d to figure out if we want to revert that and force the functional tests back to 1.6, or just leave it, since the functionality isn't any different.
  • Loading branch information
cgruber committed Feb 5, 2015
1 parent 627a521 commit 847e2ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions compiler/src/it/functional-tests/pom.xml
Expand Up @@ -57,8 +57,8 @@ limitations under the License.
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.7</source>
<target>1.7</target>
<annotationProcessors>
<annotationProcessor>dagger.internal.codegen.ComponentProcessor</annotationProcessor>
</annotationProcessors>
Expand Down
4 changes: 2 additions & 2 deletions compiler/src/it/producers-functional-tests/pom.xml
Expand Up @@ -66,8 +66,8 @@ limitations under the License.
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.7</source>
<target>1.7</target>
<annotationProcessors>
<annotationProcessor>dagger.internal.codegen.ComponentProcessor</annotationProcessor>
</annotationProcessors>
Expand Down

0 comments on commit 847e2ae

Please sign in to comment.