Changes between Version 26 and Version 27 of OvaReleaseNote-1.0.1-RC2


Ignore:
Timestamp:
04/10/12 06:29:18 (14 months ago)
Author:
paul
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OvaReleaseNote-1.0.1-RC2

    v26 v27  
    235235 
    236236   * `help` - lists all available build commands 
    237  
    238237   * `build` - does the default build - a debug version of the OVA SWC library 
    239238   * `build-all` - builds all three formats - debug, release and minimal OVA SWC libraries 
     
    241240   * `build-release` - builds a version of the OVA SWC that excludes any debug output  
    242241   * `build-minimal` - builds a minimal version of the OVA SWC that excludes a number of components (see below for details) 
    243  
    244242   * `deploy` - the default deploy option - builds and deploys the `debug` version of the OVA SWC to the OVA plugin `lib` directories so that they can use the SWC in their own build processes 
    245243   * `deploy-debug` - builds and deploys the `debug` version of the OVA SWC to the OVA plugin `lib` directories  
     
    247245   * `deploy-minimal` - builds and deploys the `minimal` version of the OVA SWC to the OVA plugin `lib` directories 
    248246 
     247Typically, to build the default version of the OVA SWC (that includes all components including debug), the following ant command is used: 
     248 
     249{{{ 
     250ant build 
     251}}} 
     252 
     253To build and deploy the default OVA SWC to the OVA for Flowplayer and/or OVA for JW5 build workspaces, the following ant command is used: 
     254 
     255{{{ 
     256ant deploy 
     257}}} 
     258 
     259Alternatively, if you wish to build and deploy a "release" version of the OVA SWC (that excludes debug), use: 
     260 
     261{{{  
     262ant deploy-release 
     263}}} 
     264 
     265And finally, if a "minimal" version of the OVA SWC is to be built and distributed to the OVA for Flowplayer and/or OVA for JW5 workspaces, use: 
     266 
     267{{{ 
     268ant deploy-minimal 
     269}}} 
     270 
     271Upon the successful completion of a build task, you should see something that appears as follows: 
     272 
     273{{{ 
     274ps-macbook-pro:build paulschulz$ ant deploy-minimal 
     275Buildfile: /Users/paulschulz/workspace/ova/lt-svn/trunk/ova.as3/build/build.xml 
     276 
     277build-minimal: 
     278     [echo] Building the 'minimal' version of the OVA for AS3 SWC... 
     279     [exec] Loading configuration file /Applications/flex_sdk_3/frameworks/flex-config.xml 
     280     [exec] /Users/paulschulz/workspace/ova/lt-svn/trunk/ova.as3/dist/minimal/ova-as3-1.0.1.swc (278900 bytes) 
     281     [echo] Build complete. 
     282 
     283deploy-minimal: 
     284     [echo] Deploying the 'minimal' SWC 'ova-as3-1.0.1.swc' to the specified OVA product directories... 
     285     [copy] Copying 1 file to /Users/paulschulz/workspace/ova/lt-svn/trunk/ova.jwplayer.5x/lib 
     286     [copy] Copying 1 file to /Users/paulschulz/workspace/ova/lt-svn/trunk/ova.flowplayer/lib 
     287     [copy] Copying 1 file to /Users/paulschulz/workspace/ova/lt-svn/trunk/ova.vpaid.ads/lib 
     288     [echo] Deployment complete. 
     289 
     290BUILD SUCCESSFUL 
     291Total time: 10 seconds 
     292ps-macbook-pro:build paulschulz$ 
     293}}} 
     294 
    249295==== 4.2.3 Deploying a Build OVA SWC Library ==== 
    250296