jbpm-form-modeler-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-app</artifactId> <version>6.2.0.Final</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.jbpm</groupId> <artifactId>jbpm-form-modeler-service</artifactId> <version>6.2.0.Final</version> </parent> <artifactId>jbpm-form-modeler-app</artifactId> <packaging>war</packaging> <name>jbpm-form-modeler-app</name> <dependencies> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-common</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-request-dispatcher</artifactId> <type>war</type> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-service-core</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-ui</artifactId> <type>war</type> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-form-editor</artifactId> <type>war</type> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-static-resources</artifactId> <type>war</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/HibernateProperties.factory</include> </includes> </resource> </webResources> <!-- the overlays configuration lets establish the order to copy the resources to the final web application the criteria is "the first win", it means that when a given resource allready exists in the destination application it will not be overwrited --> <overlays> <overlay> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-request-dispatcher</artifactId> </overlay> <overlay> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-ui</artifactId> </overlay> <overlay> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-form-editor</artifactId> </overlay> <overlay> <groupId>org.jbpm</groupId> <artifactId>jbpm-form-modeler-static-resources</artifactId> </overlay> </overlays> <packagingExcludes> WEB-INF/lib/jbpm-form-modeler-api*.jar,WEB-INF/lib/jbpm-form-service-core*.jar,WEB-INF/lib/jbpm-form-modeler-app*.jar </packagingExcludes> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <profiles> <profile> <!-- Jetty configuration for a development scenario profile --> <id>jetty</id> <build> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>8.1.7.v20120910</version> <configuration> <scanIntervalSeconds>3</scanIntervalSeconds> <stopPort>9966</stopPort> <stopKey>stop</stopKey> <webApp> <contextPath>/</contextPath> <jettyEnvXml>${project.build.directory}/jbpm-form-modeler-app/WEB-INF/jetty-env.xml</jettyEnvXml> <descriptor>${project.build.directory}/jbpm-form-modeler-app/WEB-INF/web.xml</descriptor> <resourceBases> <resourcesAsCSV>${project.basedir}/src/main/webapp</resourcesAsCSV> <resourcesAsCSV>${project.basedir}/target/jbpm-form-modeler-app</resourcesAsCSV> </resourceBases> </webApp> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <filtering>true</filtering> <directory>src/test/resources/config</directory> <includes> <include>**/jetty-env.xml</include> </includes> </resource> <resource> <directory>${basedir}/src/main/webapp/WEB-INF</directory> <filtering>true</filtering> <targetPath>WEB-INF</targetPath> <includes> <include>**/web.xml</include> </includes> </resource> </webResources> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>