[jboss-cvs] jboss-seam/build ...

Peter Muir peter at bleepbleep.org.uk
Tue Nov 13 15:49:03 EST 2007


  User: pmuir   
  Date: 07/11/13 15:49:03

  Modified:    build    parent.pom.xml
  Log:
  Recommendations on dependency scope
  
  Revision  Changes    Path
  1.5       +17 -0     jboss-seam/build/parent.pom.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: parent.pom.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/parent.pom.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- parent.pom.xml	5 Oct 2007 18:10:26 -0000	1.4
  +++ parent.pom.xml	13 Nov 2007 20:49:02 -0000	1.5
  @@ -37,4 +37,21 @@
       </pluginManagement>-->
     </build>
   
  +  <!-- 
  +    Recommendations for dependency scope
  +    
  +    * optional - this library is needed only if you use a feature of 
  +                 the module which requires it.  You can use the module without
  +                 needing this library on the classpath. A library should only
  +                 be marked non-optional if it is used by > 95% of users of the
  +                 module OR won't break the user's application if included and
  +                 not needed/another implementation is used.
  +                 
  +    * provided - this is something that is part of the Java EE 5 specification.
  +                 If it is included in the archive, things will break. Candidates
  +                 include JSF, Servlet API, JSP API, EL, JPA API. Hibernate 
  +                 would NOT be on this list since it is a JPA implementation and
  +                 not in non-JBoss AS application servers 
  +  -->
  +
   </project>
  
  
  



More information about the jboss-cvs-commits mailing list