|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
1 | 2 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
2 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 4 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
|
7 | 8 | <format>tar.gz</format> |
8 | 9 | <format>dir</format> |
9 | 10 | </formats> |
10 | | - <includeBaseDirectory>false</includeBaseDirectory> |
| 11 | + <includeBaseDirectory>true</includeBaseDirectory> |
11 | 12 | <fileSets> |
| 13 | + <!-- Copy Readme, License --> |
| 14 | + <fileSet> |
| 15 | + <directory>${project.basedir}/</directory> |
| 16 | + <includes> |
| 17 | + <include>README*</include> |
| 18 | + <include>LICENSE*</include> |
| 19 | + </includes> |
| 20 | + </fileSet> |
12 | 21 | <!-- Copy backing MATLAB scripts --> |
13 | 22 | <fileSet> |
14 | 23 | <directory>${project.build.directory}/classes/matlab/</directory> |
15 | | - <outputDirectory>hebi/</outputDirectory> |
| 24 | + <outputDirectory>matlab/</outputDirectory> |
16 | 25 | <lineEnding>dos</lineEnding> |
17 | 26 | </fileSet> |
| 27 | + <!-- Copy backing Simulink scripts --> |
| 28 | + <fileSet> |
| 29 | + <directory>${project.build.directory}/classes/simulink/</directory> |
| 30 | + <outputDirectory>simulink/</outputDirectory> |
| 31 | + </fileSet> |
18 | 32 | <!-- Copy Java library (includes all Java dependencies) --> |
19 | 33 | <fileSet> |
20 | | - <directory>${project.build.directory}</directory> |
21 | | - <outputDirectory>hebi/</outputDirectory> |
| 34 | + <directory>${project.build.directory}/</directory> |
| 35 | + <outputDirectory>matlab/</outputDirectory> |
22 | 36 | <includes> |
23 | 37 | <include>${releaseName}.jar</include> |
24 | 38 | </includes> |
|
27 | 41 | <dependencySets> |
28 | 42 | <!-- Copy native binaries into lib directory --> |
29 | 43 | <dependencySet> |
30 | | - <outputDirectory>hebi/lib/</outputDirectory> |
| 44 | + <outputDirectory>matlab/lib/</outputDirectory> |
31 | 45 | <useProjectArtifact>true</useProjectArtifact> |
32 | 46 | <unpack>true</unpack> |
33 | 47 | <scope>provided</scope> |
|
37 | 51 | </dependencySet> |
38 | 52 | </dependencySets> |
39 | 53 | </assembly> |
40 | | - |
41 | | - |
42 | | - |
43 | | - |
|
0 commit comments