You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jv...@apache.org on 2013/07/01 21:10:45 UTC

[2/2] git commit: ompile codec to 1.6

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 <jv...@apache.org>
Authored: Mon Jul 1 21:08:08 2013 +0200
Committer: jvermillard <jv...@apache.org>
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>