camunda-webapp-customized-wildfly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.camunda.consulting.webapp</groupId> <artifactId>camunda-webapp-customized-wildfly</artifactId> <version>7.7.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>com.camunda.consulting.webapp</groupId> <artifactId>camunda-webapp-customized-parent</artifactId> <version>7.7.2</version> </parent> <artifactId>camunda-webapp-customized-wildfly</artifactId> <packaging>war</packaging> <properties> <skipTests>true</skipTests> </properties> <dependencies> <dependency> <groupId>org.camunda.bpm.webapp</groupId> <artifactId>camunda-webapp-ee-jboss</artifactId> <version>${camunda.version}</version> <type>war</type> </dependency> <!-- you can add dependencies to own plugins (tasklist/cockpit) here, they will be included in the build:--> <dependency> <groupId>com.camunda.consulting.webapp.plugin</groupId> <artifactId>camunda-cockpit-plugin-simple-kpi</artifactId> <version>${consulting.plugins.version}</version> </dependency> <dependency> <groupId>com.camunda.consulting.webapp.plugin</groupId> <artifactId>camunda-cockpit-plugin-process-xml</artifactId> <version>${consulting.plugins.version}</version> </dependency> <dependency> <groupId>com.camunda.consulting.webapp.plugin</groupId> <artifactId>camunda-webapp-plugin-sso-autologin</artifactId> <version>${consulting.plugins.version}</version> </dependency> </dependencies> <build> <finalName>camunda-webapp-customized</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <archive> <manifest><!-- Maven project version number --> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries><!-- module dependencies for deployment on AS 7 --> <Dependencies>org.camunda.bpm.camunda-engine,org.camunda.bpm.dmn.camunda-engine-dmn</Dependencies> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>