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

Peter Muir peter at bleepbleep.org.uk
Mon Jul 9 14:18:18 EDT 2007


  User: pmuir   
  Date: 07/07/09 14:18:18

  Modified:    build    pdf.pom.xml core.pom.xml
  Log:
  Work on dependency management
  
  Revision  Changes    Path
  1.2       +14 -1     jboss-seam/build/pdf.pom.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: pdf.pom.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/pdf.pom.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- pdf.pom.xml	3 Jul 2007 17:05:32 -0000	1.1
  +++ pdf.pom.xml	9 Jul 2007 18:18:18 -0000	1.2
  @@ -13,7 +13,20 @@
   		<dependency>
   			<groupId>jfree</groupId>
   			<artifactId>jfreechart</artifactId>
  -			<version>1.0.3</version>
  +			<version>1.0.6</version>
  +		</dependency>
  +		
  +		<dependency>
  +			<groupId>com.sun.facelets</groupId>
  +			<artifactId>jsf-facelets</artifactId>
  +			<version>1.1.13</version>
  +		</dependency>
  +		
  +		<dependency>
  +			<groupId>javax.faces</groupId>
  +			<artifactId>jsf-impl</artifactId>
  +			<version>1.2_04-p01</version>
  +			<scope>runtime</scope>
   		</dependency>
   	</dependencies>
   
  
  
  
  1.2       +97 -65    jboss-seam/build/core.pom.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: core.pom.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/core.pom.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- core.pom.xml	3 Jul 2007 17:05:32 -0000	1.1
  +++ core.pom.xml	9 Jul 2007 18:18:18 -0000	1.2
  @@ -9,18 +9,28 @@
   
   	<repositories>
   		<repository>
  -			<id>java.net</id>
  +			<id>maven1.java.net</id>
   			<url>http://download.java.net/maven/1</url>
   			<layout>legacy</layout>
   		</repository>
   		<repository>
               <id>gwt-maven</id>
  -            <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
  +			<url>
  +				http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/
  +			</url>
           </repository>
           <repository>
               <id>jboss.org</id>
               <url>http://repository.jboss.org/maven2/</url>
           </repository>
  +		<repository>
  +			<id>glassfish.java.net</id>
  +			<url>http://download.java.net/maven/glassfish/</url>
  +		</repository>
  +		<repository>
  +			<id>maven2.java.net</id>
  +			<url>http://download.java.net/maven/2/</url>
  +		</repository>
   	</repositories>
   
   	<dependencies>
  @@ -28,53 +38,51 @@
   			<groupId>org.hibernate</groupId>
   			<artifactId>hibernate</artifactId>
   			<version>3.2.1.ga</version>
  -			<exclusions>
  -				<exclusion>
  -					<groupId>javax.transaction</groupId>
  -					<artifactId>jta</artifactId>
  -				</exclusion>
  -			</exclusions>
  +			<scope>provided</scope>
   		</dependency>
  +
   		<dependency>
   			<groupId>org.hibernate</groupId>
   			<artifactId>hibernate-annotations</artifactId>
   			<version>3.2.0.ga</version>
  +			<scope>provided</scope>
   		</dependency>
  -		<!-- Should be 3.5.CR1 -->
  +
  +		<!-- Should be 3.5.CR1, but this doesn't seem to exist -->
   		<dependency>
  -			<groupId>jboss</groupId>
  +			<groupId>javassist</groupId>
   			<artifactId>javassist</artifactId>
  -			<version>3.4.ga</version>
  +			<version>3.5-SNAPSHOT</version>
  +			<scope>provided</scope>
   		</dependency>
  -		<!-- Should be 1.1.0.jboss -->
  +
  +		<!-- Should be 1.1.0.jboss, but doesn't exist in Maven -->
   		<dependency>
   			<groupId>commons-logging</groupId>
   			<artifactId>commons-logging</artifactId>
   			<version>1.1</version>
  +			<scope>provided</scope>
   		</dependency>
  +
   		<dependency>
   			<groupId>javax.portlet</groupId>
   			<artifactId>portlet-api</artifactId>
   			<version>1.0</version>
  +			<scope>provided</scope>
   		</dependency>
  +
   		<dependency>
   			<groupId>javax.servlet</groupId>
   			<artifactId>servlet-api</artifactId>
   			<version>2.4</version>
  -		</dependency>
  -
  -		<!-- JBoss Cache -->
  -
  -		<dependency>
  -			<groupId>com.sun.facelets</groupId>
  -			<artifactId>jsf-facelets</artifactId>
  -			<version>1.1.13</version>
  +			<scope>provided</scope>
   		</dependency>
   		
   		<dependency>
   			<groupId>javax.mail</groupId>
   			<artifactId>mail</artifactId>
   			<version>1.4</version>
  +			<scope>provided</scope>
   		</dependency>
   		
   		<dependency>
  @@ -87,64 +95,88 @@
   			<groupId>javax.faces</groupId>
   			<artifactId>jsf-api</artifactId>
   			<version>1.2_04-p01</version>
  -		</dependency>
  -		
  -		<dependency>
  -			<groupId>javax.faces</groupId>
  -			<artifactId>jsf-impl</artifactId>
  -			<version>1.2_04-p01</version>
  +			<scope>provided</scope>
   		</dependency>
   		
   		<dependency>
   			<groupId>javax.servlet.jsp</groupId>
   			<artifactId>jsp-api</artifactId>
   			<version>2.1</version>
  +			<scope>provided</scope>
   		</dependency>
   		
  -		<!-- Meldware -->
  -		
  -		<!-- Drools -->
  -		
  -		<!-- Should be 1.6.0 -->
  -		<dependency>
  -			<groupId>opensymphony</groupId>
  -			<artifactId>quartz</artifactId>
  -			<version>1.5.0</version>
  -		</dependency>
  -		
  -		<!--  EJB3 stuff -->
   		<dependency>
   			<groupId>javax.ejb</groupId>
   			<artifactId>ejb-api</artifactId>
   			<version>3.0</version>
  +			<scope>provided</scope>
   		</dependency>
   		
   		<dependency>
  -			<groupId>org.ajax4jsf</groupId>
  -			<artifactId>ajax4jsf</artifactId>
  -			<version>1.1.1</version>
  +			<groupId>com.octo.captcha</groupId>
  +			<artifactId>jcaptcha-all</artifactId>
  +			<version>1.0-RC6</version>
   		</dependency>
   		
  -		<!-- Testng -->
  +		<dependency>
  +			<groupId>javax.xml.soap</groupId>
  +			<artifactId>saaj-api</artifactId>
  +			<version>1.3</version>
  +		</dependency>
   		
  -		<!-- JBPM -->
  +		<dependency>
  +			<groupId>javax.jms</groupId>
  +			<artifactId>jms-api</artifactId>
  +			<version>1.1</version>
  +			<scope>provided</scope>
  +		</dependency>
   		
   		<dependency>
  -			<groupId>com.octo.captcha</groupId>
  -			<artifactId>jcaptcha-all</artifactId>
  -			<version>1.0-RC6</version>
  +			<groupId>javax.annotation</groupId>
  +			<artifactId>jsr250-api</artifactId>
  +			<version>1.0</version>
  +			<scope>provided</scope>
   		</dependency>
   		
  -		<!-- Thirdparty -->
  +		<dependency>
  +			<groupId>javax.transaction</groupId>
  +			<artifactId>jta</artifactId>
  +			<version>1.0.1B</version>
  +			<scope>provided</scope>
  +		</dependency>
   		
  -		<!-- Hibernate search -->
  +		<!-- Nasty, this is needed to check if a String is empty -->
  +		<dependency>
  +			<groupId>jboss</groupId>
  +			<artifactId>jboss-common</artifactId>
  +			<version>4.0.4</version>
  +			<scope>provided</scope>
  +		</dependency>
   		
   		<dependency>
  -			<groupId>javax.xml.soap</groupId>
  -			<artifactId>saaj-api</artifactId>
  -			<version>1.3</version>
  +			<groupId>groovy</groupId>
  +			<artifactId>groovy-all</artifactId>
  +			<version>1.1-BETA-1</version>
  +		</dependency>
  +
  +		<dependency>
  +			<groupId>log4j</groupId>
  +			<artifactId>log4j</artifactId>
  +			<version>1.2.14</version>
  +			<scope>provided</scope>
   		</dependency>
   		
  +		<!-- LEGACY
  +			JBoss Cache
  +			Meldware
  +			Drools (once 4 goes GA this should be in Maven)
  +			Quartz (pom missing on maven.org)
  +			Some EJB3 stuff?
  +			Testng 6 needs uploading to Maven
  +			JBPM (old version on jboss repo, but incomplete pom)
  +			Hibernate search
  +		-->
  +
   	</dependencies>
   
   
  
  
  



More information about the jboss-cvs-commits mailing list