<?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> <parent> <groupId>org.kie</groupId> <artifactId>kie-dmn</artifactId> <version>7.27.0.Final</version> </parent> <artifactId>kie-dmn-backend</artifactId> <packaging>bundle</packaging><!-- bundle = jar + OSGi metadata --> <name>KIE :: Decision Model Notation :: Backend</name> <properties> <java.module.name>org.kie.dmn.backend</java.module.name> </properties> <dependencies> <dependency> <groupId>org.kie</groupId> <artifactId>kie-internal</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-dmn-api</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-dmn-model</artifactId> </dependency> <!-- XML marshalling --> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> </dependency> <dependency> <groupId>org.kie.soup</groupId> <artifactId>kie-soup-commons</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package> org.kie.dmn.backend.* </Export-Package> <Import-Package> * </Import-Package> <_removeheaders>Private-Package</_removeheaders> </instructions> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.kie</groupId> <artifactId>kie-dmn-backend</artifactId> <version>7.27.0.Final</version> </dependency>
org.kie:kie-dmn-backend:7.27.0.Final