jbpm-flow
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-flow</artifactId> <version>7.74.1.Final</version> </dependency>
<?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.jbpm</groupId> <artifactId>jbpm</artifactId> <version>7.74.1.Final</version> </parent> <artifactId>jbpm-flow</artifactId> <packaging>bundle</packaging><!-- bundle = jar + OSGi metadata --> <name>jBPM :: Flow</name> <description>jBPM Flow</description> <properties> <java.module.name>org.jbpm.flow.core</java.module.name> </properties> <profiles> <profile> <id>protobufProfile</id> <activation> <property> <name>proto</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <goals> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>protoc</executable> <arguments> <argument>-I=src/main/resources</argument> <argument>-I=../../drools/drools-serialization-protobuf/src/main/resources</argument> <argument>--java_out=src/main/java</argument> <argument>src/main/resources/org/jbpm/marshalling/jbpmmessages.proto</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>sonarcloud-analysis</id> <properties> <sonar.exclusions>**/JBPMMessages.java</sonar.exclusions> </properties> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Import-Package> javax.swing.*;resolution:=optional, org.jbpm.persistence.timer;resolution:=optional, org.kie.dmn.api.core;resolution:=optional, org.kie.dmn.api.feel.runtime.events;resolution:=optional, org.kie.dmn.core.impl;resolution:=optional, org.kie.dmn.feel;resolution:=optional, * </Import-Package> <Export-Package> org.jbpm.flow.util.*, org.jbpm.marshalling.*, org.jbpm.process.*, org.jbpm.ruleflow.*, org.jbpm.workflow.*, org.jbpm.osgi.flow.core.*, org.jbpm.util.* </Export-Package> <Bundle-Activator>org.jbpm.osgi.flow.core.Activator</Bundle-Activator> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.kie</groupId> <artifactId>kie-api</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-internal</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-core</artifactId> </dependency> <dependency> <groupId>org.jpmml</groupId> <artifactId>pmml-model</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-mvel</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-serialization-protobuf</artifactId> </dependency> <dependency> <groupId>org.kie.soup</groupId> <artifactId>kie-soup-commons</artifactId> </dependency> <dependency> <groupId>org.kie.soup</groupId> <artifactId>kie-soup-project-datamodel-commons</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-dmn-api</artifactId> <exclusions> <exclusion> <artifactId>kie-dmn-model</artifactId> <groupId>org.kie</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-dmn-feel</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-dmn-core</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.mvel</groupId> <artifactId>mvel2</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> </dependencies> </project>