forked from camunda/camunda-bpm-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassembly-war-tomcat.xml
49 lines (42 loc) · 1.49 KB
/
assembly-war-tomcat.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:maven:assembly:1.1.2">
<id>tomcat</id>
<formats>
<format>war</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>WEB-INF/lib</outputDirectory>
<useTransitiveDependencies>true</useTransitiveDependencies>
<useTransitiveFiltering>true</useTransitiveFiltering>
<scope>provided</scope>
<includes>
<include>org.camunda.bpm:camunda-engine-rest-jaxrs2:jar:*</include>
<include>org.jboss.resteasy:resteasy-jaxrs:jar:*</include>
<include>org.jboss.resteasy:async-http-servlet-3.0:jar:*</include>
<include>org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:jar:*</include>
</includes>
</dependencySet>
<dependencySet>
<outputDirectory>/</outputDirectory>
<includes>
<include>org.camunda.bpm:camunda-engine-rest:war:*</include>
</includes>
<unpack>true</unpack>
<unpackOptions>
<excludes>
<exclude>**/web.xml</exclude>
<exclude>**/camunda-engine-rest-core-*</exclude>
</excludes>
</unpackOptions>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<directory>src/main/runtime/tomcat/webapp</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>