activiti5-compatibility
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.activiti</groupId> <artifactId>activiti5-compatibility</artifactId> <version>6.0.0</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>Activiti 5 Compatibility</name> <artifactId>activiti5-compatibility</artifactId> <parent> <groupId>org.activiti</groupId> <artifactId>activiti-root</artifactId> <relativePath>../..</relativePath> <version>6.0.0</version> </parent> <dependencies> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-engine</artifactId> </dependency> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti5-engine</artifactId> </dependency> </dependencies> <profiles> <profile> <id>distro</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>