Update of /cvsroot/nice/eclipse
In directory sc8-pr-cvs1:/tmp/cvs-serv17714
Modified Files:
build.xml
Log Message:
ant install target removes all previous net.sf.nice_* plugins prom the eclipse plugins folder and copies a new
version there
Index: build.xml
===================================================================
RCS file: /cvsroot/nice/eclipse/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** build.xml 6 Aug 2003 19:59:37 -0000 1.7
--- build.xml 6 Aug 2003 20:55:09 -0000 1.8
***************
*** 201,206 ****
!
--- 201,214 ----
+ <target name="install" depends="dist">
+ <delete includeEmptyDirs="true">
+ <fileset dir="${eclipse.home}/plugins" includes="${plugin.id}_*/**"/>
+ </delete>
+ <mkdir dir="${eclipse.home}/plugins/${plugin.id.version}"/>
+ <copy todir="${eclipse.home}/plugins/${plugin.id.version}">
+ <fileset dir="${plugin.dir}" includes="**/*"/>
+ </copy>
! </target>
|