flowee-bpms-ejb-client-jakarta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.finture.bpm.javaee</groupId> <artifactId>flowee-bpms-ejb-client-jakarta</artifactId> <version>0.7.1</version> </dependency>
<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> <artifactId>flowee-bpms-ejb-client-jakarta</artifactId> <groupId>com.finture.bpm.javaee</groupId> <name>Flowee BPMS Platform - EJB Client Jakarta</name> <packaging>jar</packaging> <parent> <groupId>com.finture.bpm</groupId> <artifactId>flowee-bpms-parent</artifactId> <relativePath>../../parent/pom.xml</relativePath> <version>0.7.1</version> </parent> <dependencyManagement> <dependencies> <dependency> <groupId>com.finture.bpm</groupId> <artifactId>flowee-bpms-core-internal-dependencies</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-bom</artifactId> <version>${version.jakarta-ee-spec}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.ejb</groupId> <artifactId>jakarta.ejb-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.finture.bpm</groupId> <artifactId>flowee-bpms-engine</artifactId> <scope>provided</scope> <exclusions> <exclusion> <artifactId>livetribe-jsr223</artifactId> <groupId>org.livetribe</groupId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>sources</id> <phase>generate-sources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/generated-sources/jakarta</outputDirectory> <resources> <resource> <directory>${basedir}/../ejb-client/src/main/java</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> <execution> <id>resources</id> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/generated-resources/jakarta</outputDirectory> <resources> <resource> <directory>${basedir}/../ejb-client/src/main/resources</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>initialize</phase> <goals> <goal>properties</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.transformer</groupId> <artifactId>transformer-maven-plugin</artifactId> <executions> <execution> <id>transform-jakarta-sources</id> <phase>generate-sources</phase> <goals> <goal>transform</goal> </goals> <configuration> <transformDirectory>${project.build.directory}/generated-sources/jakarta</transformDirectory> </configuration> </execution> <execution> <id>transform-jakarta-resources</id> <phase>generate-resources</phase> <goals> <goal>transform</goal> </goals> <configuration> <transformDirectory>${project.build.directory}/generated-resources/jakarta</transformDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>add-jakarta-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${basedir}/target/generated-sources/jakarta</source> </sources> </configuration> </execution> <execution> <id>add-jakarta-resource</id> <phase>generate-resources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource><directory>${basedir}/target/generated-resources/jakarta</directory></resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>