Author: ieugen
Date: Sun Mar 24 09:18:24 2013
New Revision: 1460288
URL: http://svn.apache.org/r1460288
Log:
MIME4J-226 changed compiler source and target to java 1.5
Modified:
james/mime4j/trunk/core/pom.xml
Modified: james/mime4j/trunk/core/pom.xml
URL:
http://svn.apache.org/viewvc/james/mime4j/trunk/core/pom.xml?rev=1460288&r1=1460287&r2=1460288&view=diff
==============================================================================
--- james/mime4j/trunk/core/pom.xml (original)
+++ james/mime4j/trunk/core/pom.xml Sun Mar 24 09:18:24 2013
@@ -48,6 +48,15 @@
<build>
<plugins>
<plugin>
+ <!-- Mime4j is used in projects that still use java-1.5 so
please be careful when changing this -->
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>