flowable-ui-modeler-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-modeler-app</artifactId> <version>6.5.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.flowable</groupId> <artifactId>flowable-ui-modeler</artifactId> <version>6.5.0</version> </parent> <artifactId>flowable-ui-modeler-app</artifactId> <packaging>war</packaging> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-properties-migrator</artifactId> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-modeler-conf</artifactId> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-modeler-rest</artifactId> </dependency> <dependency> <groupId>org.flowable</groupId> <artifactId>flowable-ui-modeler-logic</artifactId> </dependency> <!-- DATABASE --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- BUILD --> <build> <finalName>flowable-modeler</finalName> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*</include> </includes> <excludes> <exclude>static/fonts/**</exclude> <exclude>static/libs/bootstrap_3.1.1/fonts/**</exclude> <exclude>static/editor-app/fonts/**</exclude> <exclude>static/libs/ui-grid_3.0.0/**</exclude> </excludes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <includes> <include>static/fonts/**</include> <include>static/libs/bootstrap_3.1.1/fonts/**</include> <include>static/editor-app/fonts/**</include> <include>static/libs/ui-grid_3.0.0/**</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludeArtifactIds> spring-boot-configuration-processor </excludeArtifactIds> </configuration> </plugin> </plugins> </build> <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.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <arguments> <argument>--com.sun.management.jmxremote.port=4000</argument> </arguments> </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.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <arguments> <argument>--spring.datasource.driver-class-name=org.postgresql.Driver</argument> <argument>--spring.datasource.url=jdbc:postgresql://localhost:5432/flowable</argument> <argument>--spring.datasource.username=flowable</argument> <argument>--spring.datasource.password=flowable</argument> <argument>--flowable.modeler.app.deployment-api-url=http://localhost:9999/flowable-task/app-api</argument> <argument>--com.sun.management.jmxremote.port=4000</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>mysql</id> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <arguments> <argument>--spring.datasource.driver-class-name=com.mysql.jdbc.Driver</argument> <argument>--spring.datasource.url=jdbc:mysql://127.0.0.1:3306/flowable?characterEncoding=UTF-8</argument> <argument>--spring.datasource.username=flowable</argument> <argument>--spring.datasource.password=flowable</argument> <argument>--flowable.modeler.app.deployment-api-url=http://localhost:9999/flowable-task/app-api</argument> <argument>--com.sun.management.jmxremote.port=4000</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>docker-deps</id> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>compile</scope> </dependency> </dependencies> </profile> <!-- docker image build and push --> <profile> <id>docker</id> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>docker-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>target/</outputDirectory> <resources> <resource> <directory>src/main/docker/</directory> <filtering>false</filtering> <excludes> <exclude>**/*.yml</exclude> </excludes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <executions> <execution> <id>build</id> <phase>package</phase> <goals> <goal>build</goal> </goals> <configuration> <tag>latest</tag> </configuration> </execution> <execution> <id>push-latest</id> <phase>deploy</phase> <goals> <goal>push</goal> </goals> <configuration> <tag>latest</tag> </configuration> </execution> <execution> <id>push-version</id> <phase>deploy</phase> <goals> <goal>tag</goal> <goal>push</goal> </goals> <configuration> <tag>${project.version}</tag> </configuration> </execution> </executions> <configuration> <repository>flowable/flowable-modeler</repository> <buildArgs> <WAR_FILE>${project.build.finalName}.war</WAR_FILE> </buildArgs> <contextDirectory>${project.build.directory}</contextDirectory> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>