mule-bpm-dummy-flowable-activity
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alfame.esb.bpm</groupId> <artifactId>mule-bpm-dummy-flowable-activity</artifactId> <version>2.2.3</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> <name>mule-bpm-dummy-flowable-activity</name> <description>Dummy implementation of Flowable Engine's Mule task, which doesn't actually execute any Mule tasks. This dummy can be used for testing purposes or to satisfy class dependencies of Flowable UI.</description> <url>https://github.com/alfameCom/mule-bpm-module</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/alfameCom/mule-bpm-module.git</connection> <developerConnection>scm:git:ssh://git@github.com:alfameCom/mule-bpm-module.git</developerConnection> <url>https://github.com/alfameCom/mule-bpm-module/tree/master</url> <tag>HEAD</tag> </scm> <artifactId>mule-bpm-dummy-flowable-activity</artifactId> <parent> <groupId>com.alfame.esb.bpm</groupId> <artifactId>mule-bpm-root</artifactId> <version>2.2.3</version> </parent> <properties> <flowable.artifact>org.flowable.mule</flowable.artifact> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <workingDirectory>${project.build.directory}</workingDirectory> <systemPropertyVariables> <propertyName>mule.workingDirectory</propertyName> <buildDirectory>${project.build.directory}</buildDirectory> </systemPropertyVariables> <runOrder>alphabetical</runOrder> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.4</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>cleanVersions</goal> </goals> </execution> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-engine</artifactId> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> <scope>provided</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> </dependencies> </project>