ompile codec to 1.6
Project: http://git-wip-us.apache.org/repos/asf/mina/repo Commit: http://git-wip-us.apache.org/repos/asf/mina/commit/56443238 Tree: http://git-wip-us.apache.org/repos/asf/mina/tree/56443238 Diff: http://git-wip-us.apache.org/repos/asf/mina/diff/56443238 Branch: refs/heads/trunk Commit: 56443238a1e57c36174219bf00b54f828fbb02f1 Parents: fffe4b5 Author: jvermillard <[email protected]> Authored: Mon Jul 1 21:08:08 2013 +0200 Committer: jvermillard <[email protected]> Committed: Mon Jul 1 21:09:12 2013 +0200 ---------------------------------------------------------------------- codec/pom.xml | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina/blob/56443238/codec/pom.xml ---------------------------------------------------------------------- diff --git a/codec/pom.xml b/codec/pom.xml index 596eb2c..ae04210 100644 --- a/codec/pom.xml +++ b/codec/pom.xml @@ -57,17 +57,29 @@ <build> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.5.1</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + <optimize>true</optimize> + <showDeprecations>true</showDeprecations> + <encoding>UTF-8</encoding> + </configuration> + </plugin> </plugins> </build> </project>
