camunda-webapp-webjar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.webapp</groupId> <artifactId>camunda-webapp-webjar</artifactId> <version>7.24.0-alpha1</version> </dependency>
<?xml version="1.0"?> <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>org.camunda.bpm</groupId> <artifactId>camunda-parent</artifactId> <relativePath>../../parent</relativePath> <version>7.24.0-alpha1</version> </parent> <groupId>org.camunda.bpm.webapp</groupId> <artifactId>camunda-webapp-webjar</artifactId> <packaging>jar</packaging> <name>Camunda Platform - webapp - webjar</name> <properties> <skipTests>true</skipTests> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-core-internal-dependencies</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <!-- add dependency so this is run after the war was build --> <dependencies> <dependency> <groupId>org.camunda.bpm.webapp</groupId> <artifactId>camunda-webapp-jakarta</artifactId> <version>${project.parent.version}</version> <type>jar</type> <classifier>classes</classifier> </dependency> </dependencies> <build> <plugins> <!-- first fetch and unpack the war --> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack</id> <phase>process-sources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.camunda.bpm.webapp</groupId> <artifactId>camunda-webapp-jakarta</artifactId> <version>${project.parent.version}</version> <type>war</type> <overWrite>true</overWrite> <outputDirectory>${project.build.outputDirectory}/META-INF/resources/webjars/camunda</outputDirectory> <excludes>META-INF/**</excludes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <!-- then remove the WEB-INF part except the security.json --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>generate-resources</phase> <configuration> <skip>${skip.frontend.build}</skip> <target> <move file="${project.build.outputDirectory}/META-INF/resources/webjars/camunda/WEB-INF/securityFilterRules.json" todir="${project.build.outputDirectory}/META-INF/resources/webjars/camunda/" /> <delete dir="${project.build.outputDirectory}/META-INF/resources/webjars/camunda/WEB-INF" /> <move file="${project.build.outputDirectory}/META-INF/resources/webjars/camunda/plugin" tofile="${project.build.outputDirectory}/META-INF/resources/plugin" verbose="true" /> <!-- add camunda-welcome page --> <copy todir="${project.build.outputDirectory}/META-INF/resources/camunda-welcome/"> <fileset dir="../camunda-welcome/" /> </copy> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>skipFrontendBuild</id> <properties> <skip.frontend.build>true</skip.frontend.build> </properties> </profile> </profiles> </project>