Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[wtp-dev] How to build a component

Here is an example ant file that can be used to build a component.

To try this locally

1) checkout releng.wtpbuilder from cvs (/home/webtools) (you can do this in eclipse too if you want)
2) You should have a JDK 1.4.2
3) You will need ant 1.6.5
4) checkout org.eclipse.releng.basebuilder R3.1 from cvs (/home/eclipse)
5) Change the properties below to match your settings

Run ant
--

<project default="build">

   <property name="build.home"  value="C:/build-home" />
   <property name="build.distribution"  value="wtp" />
<property name="wtp.builder" value="C:/releng.wtpbuilder/scripts/build/build.xml" /> <property name="eclipse.builder" value="org.eclipse.releng.basebuilder" />

   <property name="mapVersionTag"  value="HEAD" />
   <property name="buildType"  value="I" />
   <property name="build.trial"  value="true" />
   <property name="baseos"  value="win32" />
   <property name="basews"  value="win32" />
   <property name="basearch"  value="x86" />


   <target name="build">
       <ant antfile="${wtp.builder}" target="runBuild">
           <property name="component" value="wst" />
       </ant>
   </target>
</project>

--
Naci Dai,
eteration a.s. Inonu cad. Sumer sok. Zitas D1-15
Kozyatagi, Istanbul 34742
+90 (533) 580 2393 (cell)
+90 (216) 361 5434 (phone)
+90 (216) 361 2034 (fax)
http://www.eteration.com/
mailto:nacidai@xxxxxxx
mailto:naci@xxxxxxxxxxxxx



Back to the top