mtg-decks-downloader

Tool to download Magic: The Gathering decklists from the Internet
git clone https://kevincorvisier.fr/git/mtg-decks-downloader.git
Log | Files | Refs | README

assembly.xml (1186B)


      1 <assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
      2 	<id>release</id>
      3 
      4 	<formats>
      5 		<format>tar.gz</format>
      6 	</formats>
      7 
      8 	<fileSets>
      9 		<!-- bin & cfg directories -->
     10 		<fileSet>
     11 			<directory>src/main/packaged-resources</directory>
     12 			<outputDirectory>.</outputDirectory>
     13 			<includes>
     14 				<include>*/**</include>
     15 			</includes>
     16 		</fileSet>
     17 		<!-- var/log: empty directory for logs -->
     18 		<fileSet>
     19 			<directory>.</directory>
     20 			<outputDirectory>var/log</outputDirectory>
     21 			<excludes>
     22 				<exclude>*/**</exclude>
     23 			</excludes>
     24 		</fileSet>
     25 	</fileSets>
     26 
     27 	<dependencySets>
     28 		<!-- lib: my libraries -->
     29 		<dependencySet>
     30 			<outputDirectory>lib</outputDirectory>
     31 			<includes>
     32 				<include>fr.kevincorvisier*:*</include>
     33 			</includes>
     34 		</dependencySet>
     35 		<!-- ext: external libraries -->
     36 		<dependencySet>
     37 			<outputDirectory>ext</outputDirectory>
     38 			<excludes>
     39 				<exclude>fr.kevincorvisier*:*</exclude>
     40 			</excludes>
     41 		</dependencySet>
     42 	</dependencySets>
     43 
     44 </assembly>