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