Deploying your Digital Service application for the first time to start working in BMC Helix Innovation Studio
Before you begin make sure that you create a project for an application (or smart library) development. To manage the data for the application (or smart library), you should deploy the deployment package to the BMC Helix Innovation Studio server.
To deploy a package
Navigate to the <artifactId> directory (parent folder) of your application project (or smart library project) and run the following command:
The following video (5:07) provides details on how to deploy the Maven project to BMC Helix Innovation Studio server.
The video shows an older version of BMC Helix Innovation Studio. The previous product name was BMC Helix Innovation Suite. Although there might be minor changes in the UI, the overall functionality remains the same.
For example:
\projects\suggestion-box> mvn clean install -Pdeploy
When you deploy the package to BMC Helix Innovation Studio server,
The deployment package is a zip file (for example, com.example.suggestion-box1.0SNAPSHOT.zip) is created. It is located in the target directory in the application package directory (for example, \projects\suggestion-box\package\target\com.example.suggestion-box1.0SNAPSHOT.zip).
The zip file consists of the following folders and files:- db
- record
- <record-definition-name1>.def
- <record-definition-name2>.def
- <record-definition-name3>.def
- <record-definition-name3>.options
- <record-definition-name3>.data
- <record-definition-name3>.delete
- process
- <process-definition-name1>.def
- <process-definition-name2>.def
- rule
- <rule-definition-name>.def
- association
- view
- <view-definition-name>.def
- named-list
- <named-list-definition-name1>.def
- <named-list-definition-name2>.def
- localized-string
- <localized-strings.def>
- configuration.data
- role.data
- record
- code <jar file>
- manifest file
The .jar file is used to store the code for your application and the .def files are used to store definitions for your application.
- db
You can access the application in BMC Helix Innovation Studio.
- In the BMC Helix Innovation Studio, from the Workspace > deployed application page, you can launch the application by using the Visit Deployed Application link .
You can import the bundle project in Eclipse. By using Eclipse you can modify the Java code and test the code.
To import the application to Eclipse, you should import the POM file to Eclipse using the Import command (File > Import> General > Maven Projects) and set the root folder to the bundle directory of the project.
Where to go from here