xref: /aosp_15_r20/external/jacoco/org.jacoco.examples/assembly.xml (revision 7e63c1270baf9bfa84f5b6aecf17bd0c1a75af94)
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
4   This program and the accompanying materials are made available under
5   the terms of the Eclipse Public License 2.0 which is available at
6   http://www.eclipse.org/legal/epl-2.0
7
8   SPDX-License-Identifier: EPL-2.0
9
10   Contributors:
11      Evgeny Mandrikov - initial API and implementation
12-->
13<assembly>
14  <id>distribution</id>
15  <formats>
16    <format>zip</format>
17  </formats>
18  <includeBaseDirectory>false</includeBaseDirectory>
19  <fileSets>
20    <fileSet>
21      <directory>${basedir}/build</directory>
22      <outputDirectory>/examples/build</outputDirectory>
23      <fileMode>0644</fileMode>
24      <directoryMode>0755</directoryMode>
25      <filtered>true</filtered>
26    </fileSet>
27    <fileSet>
28      <directory>${basedir}/src/org/jacoco/examples</directory>
29      <outputDirectory>/examples/java</outputDirectory>
30      <fileMode>0644</fileMode>
31      <directoryMode>0755</directoryMode>
32    </fileSet>
33  </fileSets>
34</assembly>
35