jbpm-shared-services
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-shared-services</artifactId> <version>7.74.1.Final</version> </dependency>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jbpm</groupId> <artifactId>jbpm-services</artifactId> <version>7.74.1.Final</version> </parent> <artifactId>jbpm-shared-services</artifactId> <packaging>bundle</packaging> <name>jBPM :: Shared Services</name> <properties> <java.module.name>org.jbpm.shared.services</java.module.name> </properties> <dependencies> <dependency> <groupId>org.drools</groupId> <artifactId>drools-persistence-api</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-persistence-jpa</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-core</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-api</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-internal</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> </dependency> <!-- test --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>${basedir}</directory> <includes> <include>.niogit/**</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Import-Package> !org.jbpm.shared.services, org.jboss.solder.core;resolution:=optional,* </Import-Package> <Export-Package> org.jbpm.shared.services* </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>