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

Peter Muir peter at bleepbleep.org.uk
Fri Sep 21 07:02:31 EDT 2007


  User: pmuir   
  Date: 07/09/21 07:02:31

  Modified:    build     utilities.build.xml core.pom.xml root.pom.xml
  Added:       build     classpath.tmpl
  Log:
  Eclipse classpath generator, remove spring from jcaptcha dependencies, tidy up
  
  Revision  Changes    Path
  1.3       +18 -0     jboss-seam/build/utilities.build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: utilities.build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/utilities.build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- utilities.build.xml	20 Sep 2007 22:08:16 -0000	1.2
  +++ utilities.build.xml	21 Sep 2007 11:02:31 -0000	1.3
  @@ -83,4 +83,22 @@
   		</sequential>
   	</macrodef>
   	
  +	<macrodef name="eclipseClasspath">
  +		<attribute name="file" />
  +		<attribute name="tofile" />
  +		<attribute name="filterProperty" />
  +		<element name="classpath.element" implicit="true" />
  +		<sequential>
  +			<pathconvert property="eclipse.entries" pathsep="&quot;/&gt;&#10;    &lt;classpathentry kind=&quot;lib&quot; path=&quot;">
  +				<classpath.element />
  +			</pathconvert>
  +			<copy overwrite="true" tofile="@{tofile}">
  +				<fileset file="@{file}" />
  +				<filterset>
  +					<filter token="@{filterProperty}" value="&lt;classpathentry kind=&quot;lib&quot; path=&quot;${eclipse.entries}&quot;/&gt;"/>
  +				</filterset>
  +			</copy>
  +		</sequential>
  +	</macrodef>
  +	
   </project>
  \ No newline at end of file
  
  
  
  1.9       +4 -0      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.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- core.pom.xml	21 Sep 2007 10:13:10 -0000	1.8
  +++ core.pom.xml	21 Sep 2007 11:02:31 -0000	1.9
  @@ -153,6 +153,10 @@
   					<groupId>xerces</groupId>
   					<artifactId>xmlParserAPIs</artifactId>
   				</exclusion>
  +                <exclusion>
  +                    <groupId>org.springframework</groupId>
  +                    <artifactId>spring</artifactId>
  +                </exclusion>
   			</exclusions>
   		</dependency>
   
  
  
  
  1.4       +1 -1      jboss-seam/build/root.pom.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: root.pom.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/build/root.pom.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- root.pom.xml	21 Sep 2007 10:13:10 -0000	1.3
  +++ root.pom.xml	21 Sep 2007 11:02:31 -0000	1.4
  @@ -361,7 +361,7 @@
   			<dependency>
   				<groupId>org.springframework</groupId>
   				<artifactId>spring</artifactId>
  -				<version>2.0.3</version>
  +				<version>2.0.6</version>
   			</dependency>
   
   			<dependency>
  
  
  
  1.1      date: 2007/09/21 11:02:31;  author: pmuir;  state: Exp;jboss-seam/build/classpath.tmpl
  
  Index: classpath.tmpl
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <classpath>
  	<classpathentry kind="src" path="src/main"/>
  	<classpathentry kind="src" path="src/test/misc"/>
  	<classpathentry kind="src" path="ui/src/main/java"/>
  	<classpathentry kind="src" path="src/remoting"/>
  	<classpathentry kind="src" path="src/ioc"/>
  	<classpathentry kind="src" path="src/mail"/>
  	<classpathentry kind="src" path="src/pdf"/>
  	<classpathentry kind="src" path="src/debug"/>
  	<classpathentry kind="src" path="src/gen"/>
  	<classpathentry kind="src" path="examples/dvdstore/src"/>
  	<classpathentry kind="src" path="examples/blog/src"/>
  	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
  	<classpathentry kind="output" path="output/classes"/>
  	@automagic.classpath.entries@
  </classpath>
  
  
  



More information about the jboss-cvs-commits mailing list