Maven command-line build commands for TIBCO Streaming

Maven command-line build commands for TIBCO Streaming

book

Article ID: KB0071892

calendar_today

Updated On:

Products Versions
TIBCO Streaming 10.x, 11.x and later

Description

What Maven (mvn) commands are used to build TIBCO Streaming applications the way Studio builds them?

Issue/Introduction

Use: 'mvn clean install -DskipTests=true' and 'mvn clean package -DskipTests=true'.

Resolution

The command-line equivalent to building in StreamBase Studio is to:
1. cd into each fragment project folder (the one that contains the pom.xml)
2. run: mvn clean install -DskipTests=true
3. cd into the application project folder (the one that contains the pom.xml)
4. run:  mvn clean package -DskipTests=true
5. find the application archive ZIP file in the project's target/ folder.

All maven commands may be scripted, and all pom.xml extensions are available for customizing the build.

The documentation reference is here:
  TIBCO Streaming > Installation Guide > Command Line Maven