[weld-commits] Weld SVN: r4450 - api/trunk.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Fri Oct 30 10:42:51 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-10-30 10:42:51 -0400 (Fri, 30 Oct 2009)
New Revision: 4450

Modified:
   api/trunk/pom.xml
Log:
enforce no-snapshots

Modified: api/trunk/pom.xml
===================================================================
--- api/trunk/pom.xml	2009-10-30 14:31:20 UTC (rev 4449)
+++ api/trunk/pom.xml	2009-10-30 14:42:51 UTC (rev 4450)
@@ -48,6 +48,25 @@
                <skip>true</skip>
             </configuration>
          </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>enforce</id>
+                  <goals>
+                     <goal>enforce</goal>
+                  </goals>
+                  <configuration>
+                     <rules>
+                        <requireReleaseDeps>
+                           <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot>
+                        </requireReleaseDeps>
+                     </rules>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
       </plugins>
    </build>
 



More information about the weld-commits mailing list