Last change
on this file since 598 was
582,
checked in by sherbold, 12 years ago
|
- plugin mechanism now working correctly in assembly
|
File size:
1.5 KB
|
Rev | Line | |
---|
[579] | 1 | <assembly |
---|
| 2 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
| 4 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
---|
| 5 | <id>bin</id> |
---|
| 6 | <formats> |
---|
| 7 | <format>tar.gz</format> |
---|
[581] | 8 | <format>dir</format> |
---|
[579] | 9 | <!-- format>tar.bz2</format> |
---|
| 10 | <format>zip</format--> |
---|
| 11 | </formats> |
---|
| 12 | <dependencySets> |
---|
| 13 | <dependencySet> |
---|
| 14 | <includes></includes> |
---|
| 15 | <excludes> |
---|
| 16 | <exclude>de.ugoe.cs.quest:quest-runner</exclude> |
---|
| 17 | </excludes> |
---|
| 18 | <outputDirectory>lib</outputDirectory> |
---|
| 19 | </dependencySet> |
---|
| 20 | <dependencySet> |
---|
| 21 | <includes> |
---|
| 22 | <include>de.ugoe.cs.quest:quest-runner</include> |
---|
| 23 | </includes> |
---|
| 24 | <outputDirectory></outputDirectory> |
---|
| 25 | </dependencySet> |
---|
| 26 | </dependencySets> |
---|
| 27 | <fileSets> |
---|
| 28 | <fileSet> |
---|
| 29 | <directory>bin</directory> |
---|
| 30 | <outputDirectory></outputDirectory> |
---|
| 31 | <fileMode>775</fileMode> |
---|
| 32 | <includes> |
---|
| 33 | <include>*</include> |
---|
| 34 | </includes> |
---|
| 35 | </fileSet> |
---|
[582] | 36 | <!-- <fileSet> |
---|
[579] | 37 | <directory>target/plugins</directory> |
---|
| 38 | <outputDirectory>plugins</outputDirectory> |
---|
| 39 | <includes> |
---|
| 40 | <include>*.jar</include> |
---|
| 41 | </includes> |
---|
[582] | 42 | </fileSet>--> |
---|
[579] | 43 | <fileSet> |
---|
| 44 | <directory>target/data</directory> |
---|
| 45 | <outputDirectory>data</outputDirectory> |
---|
| 46 | <excludes> |
---|
| 47 | <exclude>META-INF/**</exclude> |
---|
| 48 | </excludes> |
---|
| 49 | </fileSet> |
---|
| 50 | </fileSets> |
---|
| 51 | </assembly> |
---|
Note: See
TracBrowser
for help on using the repository browser.