You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2009/09/02 14:46:15 UTC

svn commit: r810487 - /maven/doxia/site/pom.xml

Author: vsiveton
Date: Wed Sep  2 12:46:14 2009
New Revision: 810487

URL: http://svn.apache.org/viewvc?rev=810487&view=rev
Log:
o using latest doxia/pdf version
o added an enforcer rule due to MPDF-31

Modified:
    maven/doxia/site/pom.xml

Modified: maven/doxia/site/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/site/pom.xml?rev=810487&r1=810486&r2=810487&view=diff
==============================================================================
--- maven/doxia/site/pom.xml (original)
+++ maven/doxia/site/pom.xml Wed Sep  2 12:46:14 2009
@@ -136,7 +136,7 @@
   </pluginRepositories>
 
   <properties>
-    <doxiaVersion>1.1.1</doxiaVersion>
+    <doxiaVersion>1.1.2-SNAPSHOT</doxiaVersion>
   </properties>
 
   <build>
@@ -155,7 +155,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-pdf-plugin</artifactId>
-          <version>1.0</version>
+          <version>1.1-SNAPSHOT</version>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -242,6 +242,28 @@
           </execution>
         </executions>
       </plugin>
+
+      <!-- See MPDF-31 -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>enforce-java</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <phase>pre-site</phase>
+            <configuration>
+              <rules>
+                <requireJavaVersion>
+                  <version>(1.5]</version>
+                </requireJavaVersion>
+              </rules>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>