You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bval.apache.org by mb...@apache.org on 2016/10/18 21:31:37 UTC

svn commit: r1765515 - /bval/trunk/pom.xml

Author: mbenson
Date: Tue Oct 18 21:31:37 2016
New Revision: 1765515

URL: http://svn.apache.org/viewvc?rev=1765515&view=rev
Log:
upgrade commons-weaver; separate goals into multiple executions so they will execute during appropriate lifecycle phases; use a property to guide the privilizer policy

Modified:
    bval/trunk/pom.xml

Modified: bval/trunk/pom.xml
URL: http://svn.apache.org/viewvc/bval/trunk/pom.xml?rev=1765515&r1=1765514&r2=1765515&view=diff
==============================================================================
--- bval/trunk/pom.xml (original)
+++ bval/trunk/pom.xml Tue Oct 18 21:31:37 2016
@@ -41,7 +41,8 @@
 
     <properties>
         <site.deploy.url>scp://people.apache.org/home/${user.name}/public_html/bval/${project.version}/staging-site</site.deploy.url>
-        <commons.weaver.version>1.2</commons.weaver.version>
+        <commons.weaver.version>1.3</commons.weaver.version>
+        <privilizer.policy>DYNAMIC</privilizer.policy>
     </properties>
 
     <inceptionYear>2010</inceptionYear>
@@ -580,13 +581,19 @@
                     <configuration>
                         <verbose>true</verbose>
                         <weaverConfig>
-                            <privilizer.policy>DYNAMIC</privilizer.policy>
+                            <privilizer.policy>${privilizer.policy}</privilizer.policy>
                         </weaverConfig>
                     </configuration>
                     <executions>
                         <execution>
+                        	<id>weaver-prepare</id>
                             <goals>
                                 <goal>prepare</goal>
+                            </goals>
+                        </execution>
+                        <execution>
+                        	<id>weaver-weave</id>
+                            <goals>
                                 <goal>weave</goal>
                             </goals>
                         </execution>