此内容没有您所选择的语言版本。
Chapter 3. Creating a Maven project for a Red Hat build of Kogito microservice
Before you can begin developing Red Hat build of Kogito microservices, you need to create a Maven project where you can build your assets and any other related resources for your application.
Procedure
- In a command terminal, navigate to a local folder where you want to store the new project.
Enter the following command to generate a project within a defined folder:
On Red Hat build of Quarkus
Copy to Clipboard Copied! Toggle word wrap Toggle overflow On Spring Boot
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This command generates a
sample-kogito
Maven project and imports the extension for all required dependencies and configurations to prepare your application for business automation.If you want to enable PMML execution for your project, add the following dependency to the
pom.xml
file in the Maven project that contains your Red Hat build of Kogito microservices:Dependency to enable PMML execution
Copy to Clipboard Copied! Toggle word wrap Toggle overflow On Red Hat build of Quarkus, if you plan to run your application on OpenShift, you must also import the
smallrye-health
extension for the liveness and readiness probes, as shown in the following example:SmallRye Health extension for Red Hat build of Quarkus applications on OpenShift
mvn quarkus:add-extension -Dextensions="smallrye-health"
$ mvn quarkus:add-extension -Dextensions="smallrye-health"
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This command generates the following dependency in the
pom.xml
file of your Red Hat Decision Manager project on Red Hat build of Quarkus:SmallRye Health dependency for Red Hat build of Quarkus applications on OpenShift
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-smallrye-health</artifactId> </dependency>
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-smallrye-health</artifactId> </dependency>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Open or import the project in your VSCode IDE to view the contents.