blob: b92fa72714e0a9f052a6b090c33c6fe0481230b8 [file] [log] [blame]
Brian O'Connor6ccba962015-02-17 18:16:02 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<assembly
18 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
21 <formats>
22 <format>zip</format>
23 </formats>
24 <id>onos</id>
25 <includeBaseDirectory>false</includeBaseDirectory>
26 <files>
27 <file>
28 <source>src/assembly/app.xml</source>
29 <destName>app.xml</destName>
30 </file>
31 <file>
32 <source>target/${project.artifactId}-${project.version}.jar</source>
33 <destName>m2/org/onosproject/${project.artifactId}/${project.version}/${project.artifactId}-${project.version}.jar</destName>
34 </file>
35 </files>
36</assembly>