Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 1 | <!--
|
| 2 | ============LICENSE_START=======================================================
|
| 3 | ECOMP MSO
|
| 4 | ================================================================================
|
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
|
| 6 | ================================================================================
|
| 7 | Licensed under the Apache License, Version 2.0 (the "License");
|
| 8 | you may not use this file except in compliance with the License.
|
| 9 | You may obtain a copy of the License at
|
| 10 |
|
| 11 | http://www.apache.org/licenses/LICENSE-2.0
|
| 12 |
|
| 13 | Unless required by applicable law or agreed to in writing, software
|
| 14 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 16 | See the License for the specific language governing permissions and
|
| 17 | limitations under the License.
|
| 18 | ============LICENSE_END=========================================================
|
| 19 | -->
|
| 20 |
|
| 21 | <assembly
|
| 22 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
|
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 24 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
|
| 25 | <id>cockpit-build</id>
|
| 26 |
|
| 27 | <formats>
|
| 28 | <format>war</format>
|
| 29 | </formats>
|
| 30 |
|
| 31 | <includeBaseDirectory>false</includeBaseDirectory>
|
| 32 |
|
| 33 | <dependencySets>
|
| 34 | <dependencySet>
|
| 35 | <outputDirectory>/</outputDirectory>
|
| 36 | <includes>
|
Rob Daugherty | a10e358 | 2017-10-12 12:47:20 -0400 | [diff] [blame] | 37 | <include>org.camunda.bpm.webapp:${camunda.bpm.webapp.artifact}</include>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 38 | </includes>
|
| 39 | <unpack>true</unpack>
|
| 40 | <unpackOptions>
|
| 41 | <excludes>
|
| 42 | <exclude>WEB-INF/applicationContext.xml</exclude>
|
| 43 | <exclude>WEB-INF/web.xml</exclude>
|
| 44 | <exclude>WEB-INF/jboss-deployment-structure.xml</exclude>
|
| 45 | </excludes>
|
| 46 | </unpackOptions>
|
| 47 | <scope>runtime</scope>
|
| 48 | <useProjectArtifact>false</useProjectArtifact>
|
| 49 | </dependencySet>
|
| 50 |
|
| 51 | <!-- Here is where cockpit plugins are embedded -->
|
| 52 |
|
| 53 | <dependencySet>
|
| 54 | <outputDirectory>/WEB-INF/lib</outputDirectory>
|
| 55 | <includes>
|
| 56 | <!-- The URN Mapping plugin -->
|
| 57 | <!-- for MSO Logging -->
|
| 58 | <include>org.openecomp.mso:logger</include>
|
| 59 | <include>ch.qos.logback:logback-core</include>
|
| 60 | <include>ch.qos.logback:logback-classic</include>
|
| 61 | <include>com.att.eelf:eelf-core</include>
|
| 62 |
|
| 63 | <!-- Included so the cockpit can deserialize and display core
|
| 64 | class objects, like MSOWorkflowException -->
|
| 65 | <include>org.openecomp.mso:MSOCoreBPMN</include>
|
| 66 | </includes>
|
| 67 | <unpack>false</unpack>
|
| 68 | <scope>runtime</scope>
|
| 69 | <useProjectArtifact>false</useProjectArtifact>
|
| 70 | </dependencySet>
|
| 71 | </dependencySets>
|
| 72 |
|
| 73 | <!-- We provide our own versions of the following files -->
|
| 74 |
|
| 75 | <files>
|
| 76 | <file>
|
| 77 | <source>src/main/resources/WEB-INF/applicationContext.xml</source>
|
| 78 | <outputDirectory>/WEB-INF</outputDirectory>
|
| 79 | </file>
|
| 80 | <file>
|
| 81 | <source>src/main/resources/WEB-INF/web.xml</source>
|
| 82 | <outputDirectory>/WEB-INF</outputDirectory>
|
| 83 | </file>
|
| 84 | <file>
|
| 85 | <source>src/main/resources/WEB-INF/jboss-deployment-structure.xml</source>
|
| 86 | <outputDirectory>/WEB-INF</outputDirectory>
|
| 87 | </file>
|
| 88 | </files>
|
| 89 | </assembly>
|