* spring beans DI examples * fix-1: shortening examples * List of Rules Engines in Java * BAEL-812: Openl-Tablets example added * BAEL-812: artifacts names changed * BAEL-812: moving rule-engines examples to rule-engines folder * BAEL-812: removing evaluation article files * BAEL-812: folder renamed * BAEL-812: folder renamed * BAEL-812: pom.xml - parent added * BAEL-1027: Introduction to GraphQL - initial commit * BAEL-781: Explore the new Spring Cloud Gateway * BAEL-781: Fix UserService.java * BAEL-781: Fix user-service pom.xml * BAEL-781: remove eureka-server from the example * BAEL-781: modifying example * BAEL-803: Backward Chaining wih Drools * BAEL-803: pom.xml * BAEL-803: Backward Chaining with Drools - new example * BAEL-803: Backward Chaining with Drools - parent module * BAEL-803: Backward Chaining with Drools - parent module * BAEL-803: Backward Chaining with Drools - meta-inf/maven-fix * BAEL-803: Backward Chaining with Drools - drools parent module
35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>drools-backward-chaining</artifactId>
|
|
<version>1.0</version>
|
|
<name>drools-backward-chaining</name>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<runtime.version>6.4.0.Final</runtime.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.kie</groupId>
|
|
<artifactId>kie-api</artifactId>
|
|
<version>${runtime.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<version>${runtime.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-decisiontables</artifactId>
|
|
<version>${runtime.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |