flowable-ui-admin-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.petals.flowable</groupId> <artifactId>flowable-ui-admin-app</artifactId> <version>6.2.1-PETALS-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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <name>Flowable UI Admin</name> <artifactId>flowable-ui-admin-app</artifactId> <packaging>war</packaging> <parent> <groupId>org.ow2.petals.flowable</groupId> <artifactId>flowable-ui-admin</artifactId> <version>6.2.1-PETALS-1</version> </parent> <properties> <!-- Maven build properties --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.7</java.version> <!-- Libraries versions --> <flowable.version>6.2.1</flowable.version> <jetty.version>9.1.3.v20140225</jetty.version> <!-- Web container version --> <tomcat.version>7.0.53</tomcat.version> </properties> <profiles> <profile> <id>h2mem</id> <activation> <activeByDefault>true</activeByDefault> </activation> <dependencies> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <configuration> <path>/flowable-admin</path> <port>9988</port> <protocol>org.apache.coyote.http11.Http11NioProtocol</protocol> <systemProperties> <com.sun.management.jmxremote.port>4002</com.sun.management.jmxremote.port> </systemProperties> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>postgresql</id> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <configuration> <path>/flowable-admin</path> <port>9988</port> <protocol>org.apache.coyote.http11.Http11NioProtocol</protocol> <systemProperties> <datasource.driver>org.postgresql.Driver</datasource.driver> <datasource.url>jdbc:postgresql://localhost:5432/flowable</datasource.url> <datasource.username>flowable</datasource.username> <datasource.password>flowable</datasource.password> <com.sun.management.jmxremote.port>4000</com.sun.management.jmxremote.port> </systemProperties> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>dev</id> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <configuration> <path>/flowable-admin</path> <port>9988</port> <protocol>org.apache.coyote.http11.Http11NioProtocol</protocol> <systemProperties> <datasource.driver>com.mysql.jdbc.Driver</datasource.driver> <datasource.url>jdbc:mysql://127.0.0.1:3306/flowable?characterEncoding=UTF-8</datasource.url> <datasource.username>flowable</datasource.username> <datasource.password>flowable</datasource.password> <com.sun.management.jmxremote.port>4002</com.sun.management.jmxremote.port> <!-- endpoint config for development --> <rest.process.app.port>9999</rest.process.app.port> <rest.process.app.contextroot>flowable-task</rest.process.app.contextroot> <rest.process.app.restroot>process-api</rest.process.app.restroot> <rest.dmn.app.port>9999</rest.dmn.app.port> <rest.dmn.app.contextroot>flowable-task</rest.dmn.app.contextroot> <rest.dmn.app.restroot>dmn-api</rest.dmn.app.restroot> <rest.form.app.port>9999</rest.form.app.port> <rest.form.app.contextroot>flowable-task</rest.form.app.contextroot> <rest.form.app.restroot>form-api</rest.form.app.restroot> <rest.content.app.port>9999</rest.content.app.port> <rest.content.app.contextroot>flowable-task</rest.content.app.contextroot> <rest.content.app.restroot>content-api</rest.content.app.restroot> </systemProperties> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>distro</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- database qa profile --> <profile> <id>database</id> <activation> <property> <name>database</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 db configuration to db ${database}" /> <copy file="${user.home}/.flowable/enterprise/build.flowable-admin.${database}.properties" tofile="target/test-classes/META-INF/flowable-admin/TEST-db.properties" overwrite="true" /> </tasks> </configuration> </execution> <execution> <id>database-test-drop-schema</id> <phase>process-test-classes</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo message="dropping schema in ${database}" /> <java classname="org.flowable.db.DbScriptUtil" classpathref="maven.test.classpath" /> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>oracle</id> <activation> <property> <name>database</name> <value>oracle</value> </property> </activation> <dependencies> <dependency> <groupId>com.oracle.jdbc</groupId> <artifactId>ojdbc7</artifactId> <version>12.1.0.1</version> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>db2</id> <activation> <property> <name>database</name> <value>db2</value> </property> </activation> <dependencies> <dependency> <groupId>com.ibm.db2.jcc</groupId> <artifactId>db2jcc4</artifactId> <version>10.1</version> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>mssql</id> <activation> <property> <name>database</name> <value>mssql</value> </property> </activation> <dependencies> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId> <version>4.0</version> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>mysql</id> <activation> <property> <name>database</name> <value>mysql</value> </property> </activation> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.30</version> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>onpremise</id> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.3-1102-jdbc4</version> </dependency> </dependencies> </profile> <profile> <id>buildDockerImage</id> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <path>/</path> <finalName>${project.build.finalName}.jar</finalName> </configuration> <executions> <execution> <id>tomcat-run</id> <goals> <goal>exec-war-only</goal> </goals> <phase>package</phase> <configuration> <path>/flowable-admin</path> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.13</version> <configuration> <imageName>flowable/${project.build.finalName}</imageName> <baseImage>flowable/java8_server</baseImage> <entryPoint>["java", "-jar", "/${project.build.finalName}.jar", "-httpPort=9988", "-httpProtocol=org.apache.coyote.http11.Http11NioProtocol"]</entryPoint> <forceTags>true</forceTags> <imageTags> <imageTag>${project.version}</imageTag> <imageTag>latest</imageTag> </imageTags> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}.jar</include> </resource> <resource> <targetPath>/</targetPath> <directory>${project.basedir}/src/main/docker</directory> <include>wait-for-something.sh</include> </resource> </resources> </configuration> <executions> <execution> <id>build-image</id> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>pushDockerImage</id> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.13</version> <executions> <execution> <id>tag-image-version</id> <phase>package</phase> <goals> <goal>tag</goal> </goals> <configuration> <image>flowable/${project.build.finalName}</image> <newName>docker.io/flowable/${project.build.finalName}:${project.version}</newName> <serverId>docker-hub</serverId> <pushImage>true</pushImage> </configuration> </execution> <execution> <id>tag-image-latest</id> <phase>package</phase> <goals> <goal>tag</goal> </goals> <configuration> <image>flowable/${project.build.finalName}</image> <newName>docker.io/flowable/${project.build.finalName}:latest</newName> <serverId>docker-hub</serverId> <pushImage>true</pushImage> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <prerequisites> <maven>3.0.0</maven> </prerequisites> <dependencies> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-admin-conf</artifactId> <version>6.2.1</version> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-admin-rest</artifactId> <version>6.2.1</version> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-admin-logic</artifactId> <version>6.2.1</version> </dependency> <!-- Flowable --> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-common</artifactId> <version>6.2.1</version> </dependency> <dependency> <groupId>org.ow2.petals.flowable</groupId> <artifactId>flowable-bpmn-model</artifactId> </dependency> <dependency> <groupId>org.ow2.petals.flowable</groupId> <artifactId>flowable-bpmn-converter</artifactId> </dependency> <!-- Http client --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> </dependency> <!-- LOGGING --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <!-- JSON --> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-json-org</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-hppc</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-joda</artifactId> </dependency> <!-- DATABASE --> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> </dependency> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <!-- <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.2-1004-jdbc4</version> </dependency> <dependency> <groupId>com.oracle.jdbc</groupId> <artifactId>ojdbc7</artifactId> <version>12.1.0.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.30</version> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId> <version>4.0</version> </dependency> <dependency> <groupId>com.ibm.db2.jcc</groupId> <artifactId>db2jcc4</artifactId> <version>10.1</version> </dependency> --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> </dependency> <dependency> <groupId>com.fasterxml.uuid</groupId> <artifactId>java-uuid-generator</artifactId> </dependency> <!-- COMMON dependencies --> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- JODA TIME --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.7.4</version> <type>jar</type> <scope>compile</scope> </dependency> <!-- TEST dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>0.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- BUILD --> <build> <finalName>flowable-admin</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <message>You are running an older version of Maven. JHipster requires at least Maven 3.0</message> <version>[3.0.0,)</version> </requireMavenVersion> <requireJavaVersion> <message>You are running an older version of Java. The Admin Application requires at least JDK 1.6</message> <version>[1.6.0,)</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> <argLine>-XX:MaxPermSize=128m -Xmx256m</argLine> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <!-- Force alphabetical order to have a reproducible build --> <runOrder>alphabetical</runOrder> </configuration> </plugin> <plugin> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> <version>1.1.1</version> <executions> <execution> <id>generate-rebel-xml</id> <phase>process-resources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <path>/flowable-admin</path> <port>9988</port> <protocol>org.apache.coyote.http11.Http11NioProtocol</protocol> </configuration> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.14</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>2.2</version> </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.zeroturnaround </groupId> <artifactId> jrebel-maven-plugin </artifactId> <versionRange> [1.1.1,) </versionRange> <goals> <goal>generate</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>