29 lines
837 B
XML
29 lines
837 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>1.0</version>
|
||
|
|
||
|
<name>openl-tablets</name>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<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>
|