* 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
23 lines
926 B
XML
23 lines
926 B
XML
<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>
|
|
<groupId>com.baeldung.openltablets</groupId>
|
|
<artifactId>openl-tablets</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openl</groupId>
|
|
<artifactId>org.openl.core</artifactId>
|
|
<version>5.19.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openl.rules</groupId>
|
|
<artifactId>org.openl.rules</artifactId>
|
|
<version>5.19.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |