Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Generates an artifact jar of checked out objects for deployment. You should Generates an artifact jar (MDSObjects.jar) from exported code. You must checkout or export code from SCM prior to running this operation. Checkout or Export can be easily done if you configure project with Source details.

Generated MDSObjects.jar artifact file will not have namespace folder at root, but when it is deployed it will still have folder structure as per exported code, checkout folder & project properties configuration, see project properties section for more details. When artifact is deployed, it will be deployed under specific namespace configured on Project properties.

There are no special requirements for the Endpoint where this operation will execute.

As of plugin version 4.6.20, this This operation also supports partial build.   Partial build creates a build artifact containing file(s) and folder(s) selected on the Project Files tab of a project. When using partial build, the plugin will generate a zip file named {{FD_PROJECT_NAME}}.zip . Note that the structure of this file will match the folder structure from SCM, even if the TARGET attribute is set to a different path. This is so the user can easily change the target and redeploy to MDS to update the file path inside of MDS without having to rebuild the entire project. 

...

...

Property Name

...

Required

...

Description

Project Properties

Outputs

Output Name

Required

Description

Property Name

Property Code

Required

Description

MDS Base Object Path

FDMDS_BASE_OBJ_DIR

No

The relative directory path from where MDS objects will be included in artifact. If you want all files from configured Project Sources including checkout folder, then you can leave this property empty.

Inputs

...

Input Name

...

Required

...

Description

See Special Considerations below for more details.

Project File Attributes

Info

The following properties are Project File Attributes. They are only available on Partial Deploy Package-Based Deployment projects.

Attribute Name

Attribute Code

Required

Description

Target Path

TARGET

Yes

The path in MDS where the file should be placed. Default value is the SCM file path.

Property Replacement

PROPERTY_REPLACEMENT

Yes

Weather

Whether or not to perform property replacement on individual files. Defaults to the value of FDMDS_PROPERTY_REPLACEMENT. 

Info

The target path should not contain the namespace folder, however, if the target path starts with the namespace, the plugin will ignore the namespace on the beginning of the target path. For example, if FDMDS_NAME_SPACE is "apps", and the target path is /Schemas/customer.xsd, the path inside of MDS will be /apps/Schemas/customer.xsd. 

...

Endpoint Selection

This operation will select all available delegates endpoint selection to the workflow developer. The workflow editor will default the selection to "All", which selects all available endpoints associated to the Target.

Selecting a specific resource will result in selection of endpoints associated to the environment/instanceTarget which have that resource defined.

Endpoint Execution

This operation will execute on any one of the selected endpoints and will be random in the determination of which one.

...

If your MDS objects are in separate SCM folders, then everything will be easy to build and deploy, but if you have one single SCM folder, but would like to create more than one FlexDeploy projects, you need to utilize MDS Base Object Path and Checkout Folder to control what gets included in artifacts jar file. For example:

...

Git Example

  • Subversion

    Git Folder structure

    • /

      trunk

      MDS/

      namespace

      apps/order/order.xsd

    • /

      trunk

      MDS/

      namespace

      apps/customer/customer.xsd

  • If you want both of the objects

    • Check out /trunk into empty checkout folder.
    • Set namespace for

      Use "MDS/apps" for sparse checkout folder script. You can use anything for checkout folder script.

    • Use apps for MDS Name Space.

    • Leave MDS Base Object Path

       and

      as empty and all objects will be included in artifact jar file, and it will have proper structure i.e. order/order.xsd and customer/customer.xsd.

    • At deploy time both files will deploy to apps folder.

    • This option should work for partial deployment project as well.

  • If you want only customer objects

    • Make sure you only checkout /trunk/namespace/customer folder only as we are only interested in customer objects here.
    • Use namespace/customer as checkout folder as we still want to maintain structure of objects.
    • Set namespace as 

      Use "MDS/apps/customer" for sparse checkout folder script. You can use anything for checkout folder script.

    • Leave MDS Base Object Path as empty.

    • So, we have only checked out objects necessary for our project

      , so only customer folder related objects will be included in artifact jar file, but it will still have proper structure, i.e. customer/customer.xsd

      .

    • Use apps/customer for MDS Name Space.

  • Configurations for

    what should be checked out

    sparse folder and checkout folder is done on Source Configurations for project and SCM plugins will automatically utilize that information.

...

Subversion Example

Tip

For SCM other than Git and CVS, it is best to setup MDS Base Object Path to indicate what is included in the artifact in accordance with checkout folder setting.

  • Subversion Folder structure

    • /

      MDS

      trunk/

      namespace

      apps/order/order.xsd

    • /

      MDS

      trunk/

      namespace

      apps/customer/customer.xsd

  • If you want both

    of the

    objects

    • Use /MDS for sparse checkout folders and empty checkout folder.
    • Set /MDS/namespace  as 

      Configure /trunk/apps on Project Source.

    • Option 1

      • Set Checkout folder and MDS Base Object Path set to Project Name.

    • Option 2

      • Do not set anything for Checkout folder and MDS Base Object Path

      , and all
      • .

    • For both options, both objects will be included in artifact jar file, and it will have proper structure i.e. order/order.xsd and customer/customer.xsd.

    • Configure namespace on Project Properties as apps.

  • If you want only customer objects

    • Use /MDS/namespace/customer for sparse checkout folders and empty checkout folder.
    • Set /MDS/namespace 

      Make sure you only checkout /trunk/apps/customer folder only as we are only interested in customer objects here.

    • Use apps/customer as checkout folder as we still want to maintain structure of objects.

    • Set apps as MDS Base Object Path.

    • So, we have only checked out objects necessary for our project, so only customer folder related objects will be included in artifact jar file, but it will still have proper structure, i.e. customer/customer.xsd.

    • Configure namespace on Project Properties as apps.

  • Configurations for

    sparse folder

    what should be checked out and checkout folder is done on Source Configurations for project and SCM plugins will automatically utilize that information.