activiti-form-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.activiti</groupId> <artifactId>activiti-form-engine</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 - Form Engine</name> <artifactId>activiti-form-engine</artifactId> <parent> <groupId>org.activiti</groupId> <artifactId>activiti-root</artifactId> <relativePath>../..</relativePath> <version>6.0.0</version> </parent> <properties> <activiti.artifact> org.activiti.form.engine </activiti.artifact> </properties> <dependencies> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-form-model</artifactId> </dependency> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-form-api</artifactId> </dependency> <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-form-json-converter</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>de.odysseus.juel</groupId> <artifactId>juel-api</artifactId> </dependency> <dependency> <groupId>de.odysseus.juel</groupId> <artifactId>juel-impl</artifactId> </dependency> <dependency> <groupId>de.odysseus.juel</groupId> <artifactId>juel-spi</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>com.fasterxml.uuid</groupId> <artifactId>java-uuid-generator</artifactId> </dependency> <!-- DATABASE --> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <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> <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> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.felix</groupId> <artifactId> maven-bundle-plugin </artifactId> <versionRange> [2.1.0,) </versionRange> <goals> <goal>cleanVersions</goal> <goal>manifest</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <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> <!-- database qa profile --> <profile> <id>databaseform</id> <activation> <property> <name>databaseform</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <!-- only worked with this version, there might be a bug with antrun see http://jira.codehaus.org/browse/MANTRUN-109 --> <version>1.4</version> <executions> <execution> <id>database-test-create-schema</id> <phase>process-test-classes</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo message="updating activiti form configuration to db ${databaseform}" /> <copy file="${basedir}/../../qa/db/activiti.form.cfg.xml" todir="target/test-classes" overwrite="true"> <filterset filtersfile="${user.home}/.activiti/jdbc/build.activiti6.${databaseform}.properties" /> </copy> </tasks> </configuration> </execution> <execution> <id>database-test-drop-schema</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo message="dropping schema in ${databaseform}" /> <java classname="org.activiti.form.engine.impl.db.DbSchemaDrop" classpathref="maven.test.classpath" /> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>databasewithschemaform</id> <activation> <property> <name>databasewithschemaform</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <!-- only worked with this version, there might be a bug with antrun see http://jira.codehaus.org/browse/MANTRUN-109 --> <version>1.4</version> <executions> <execution> <id>database-test-create-schema</id> <phase>process-test-classes</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo message="updating activiti form configuration to db ${databasewithschemaform}" /> <copy file="${basedir}/../../qa/db/schema/activiti.form.cfg.xml" todir="target/test-classes" overwrite="true"> <filterset filtersfile="${user.home}/.activiti/jdbc/build.activiti6.${databasewithschemaform}.properties" /> </copy> </tasks> </configuration> </execution> <execution> <id>database-test-drop-schema</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo message="dropping schema in ${databasewithschemaform}" /> <java classname="org.activiti.form.engine.impl.db.DbSchemaDrop" classpathref="maven.test.classpath" /> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>oracle</id> <activation> <property> <name>databaseform</name> <value>oracle</value> </property> </activation> <dependencies> <dependency> <groupId>com.oracle.jdbc</groupId> <artifactId>ojdbc7</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>oraclewithschemaform</id> <activation> <property> <name>databasewithschemaform</name> <value>oracle</value> </property> </activation> <dependencies> <dependency> <groupId>com.oracle.jdbc</groupId> <artifactId>ojdbc7</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>db2</id> <activation> <property> <name>databaseform</name> <value>db2</value> </property> </activation> <dependencies> <dependency> <groupId>com.ibm.db2.jcc</groupId> <artifactId>db2jcc4</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>mssql</id> <activation> <property> <name>databaseform</name> <value>mssql</value> </property> </activation> <dependencies> <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>mysql</id> <activation> <property> <name>databaseform</name> <value>mysql</value> </property> </activation> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>hsql</id> <activation> <property> <name>databaseform</name> <value>hsql</value> </property> </activation> <dependencies> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> </project>