File excalibur-r508111-maven-compile-target.patch of Package excalibur
--- project.properties.orig 2008-10-09 11:08:16.285297175 -0400
+++ project.properties 2008-10-09 11:08:47.646297498 -0400
@@ -40,5 +40,6 @@
maven.multiproject.includes = **/project.xml
# Generate class files that will run on 1.3 JVMs.
-maven.compile.target=1.3
+maven.compile.source=1.5
+maven.compile.target=1.5
--- containerkit/logkit/pom.xml~ 2007-02-15 14:47:05.000000000 -0500
+++ containerkit/logkit/pom.xml 2008-10-10 15:46:30.149849604 -0400
@@ -60,10 +60,21 @@
<version>3.8.2</version>
</dependency>
</dependencies>
- <build />
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/excalibur/tags/excalibur-first-maven2-release</connection>
<url>https://svn.apache.org/repos/asf/excalibur/tags/excalibur-first-maven2-release</url>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/excalibur/tags/excalibur-first-maven2-release</developerConnection>
</scm>
-</project>
\ No newline at end of file
+</project>