You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bs...@apache.org on 2007/11/12 22:31:03 UTC

svn commit: r594305 - /commons/proper/lang/trunk/pom.xml

Author: bspeakmon
Date: Mon Nov 12 13:31:02 2007
New Revision: 594305

URL: http://svn.apache.org/viewvc?rev=594305&view=rev
Log:
- force javadoc to source 1.4 so it'll work on >= 1.5

Modified:
    commons/proper/lang/trunk/pom.xml

Modified: commons/proper/lang/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/pom.xml?rev=594305&r1=594304&r2=594305&view=diff
==============================================================================
--- commons/proper/lang/trunk/pom.xml (original)
+++ commons/proper/lang/trunk/pom.xml Mon Nov 12 13:31:02 2007
@@ -363,7 +363,7 @@
       <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
-  </dependencies>
+  </dependencies> 
 
   <build>
     <sourceDirectory>src/java</sourceDirectory>
@@ -393,5 +393,16 @@
         </plugin>
       </plugins>
     </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
 
 </project>