|
1 | 1 | <assembly
|
2 |
| - xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
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"> |
| 2 | + xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 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"> |
5 | 5 | <id>bin</id>
|
6 | 6 | <formats>
|
7 | 7 | <format>zip</format>
|
|
15 | 15 | <destName>README</destName>
|
16 | 16 | <filtered>true</filtered>
|
17 | 17 | </file>
|
18 |
| - |
| 18 | + |
19 | 19 | <!-- License -->
|
20 | 20 | <file>
|
21 | 21 | <source>${project.basedir}/LICENSE.txt</source>
|
22 | 22 | <outputDirectory>/alohaeditor-${project.version}</outputDirectory>
|
23 | 23 | <destName>LICENSE.txt</destName>
|
24 | 24 | </file>
|
25 |
| - |
| 25 | + |
26 | 26 | <!-- package.json file -->
|
27 | 27 | <file>
|
28 | 28 | <source>${project.basedir}/src/package.json</source>
|
29 | 29 | <outputDirectory>/alohaeditor-${project.version}/aloha</outputDirectory>
|
30 | 30 | <filtered>true</filtered>
|
31 | 31 | </file>
|
32 |
| - |
33 |
| - <!-- Bare Version (No require, No jquery) - minified --> |
34 |
| - <file> |
35 |
| - <source>${project.basedir}/target/${build.profile}/minified-bare/${build.profile}-bare.js</source> |
36 |
| - <outputDirectory>/alohaeditor-${project.version}/aloha/lib</outputDirectory> |
37 |
| - <destName>aloha-bare.min.js</destName> |
38 |
| - <filtered>true</filtered> |
39 |
| - </file> |
40 |
| - |
41 |
| - <!-- Bare Version (No require, No jquery) - unminified --> |
42 |
| - <file> |
43 |
| - <source>${project.basedir}/target/${build.profile}/debug-bare/${build.profile}-bare.js</source> |
44 |
| - <outputDirectory>/alohaeditor-${project.version}/aloha/lib</outputDirectory> |
45 |
| - <destName>aloha-bare.js</destName> |
46 |
| - <filtered>true</filtered> |
47 |
| - </file> |
48 |
| - |
49 |
| - <!-- All inclusive version of aloha --> |
50 |
| - <file> |
51 |
| - <source>${project.basedir}/target/${build.profile}/minified-full/${build.profile}.js</source> |
52 |
| - <outputDirectory>/alohaeditor-${project.version}/aloha/lib</outputDirectory> |
53 |
| - <destName>aloha-full.min.js</destName> |
54 |
| - <filtered>true</filtered> |
55 |
| - </file> |
56 |
| - |
57 |
| - <file> |
58 |
| - <source>${project.basedir}/target/${build.profile}/debug-full/${build.profile}.js</source> |
59 |
| - <outputDirectory>/alohaeditor-${project.version}/aloha/lib</outputDirectory> |
60 |
| - <destName>aloha-full.js</destName> |
61 |
| - <filtered>true</filtered> |
62 |
| - </file> |
63 | 32 |
|
64 | 33 | <!-- Default version of aloha (the minified bare version) -->
|
65 | 34 | <file>
|
66 |
| - <source>${project.basedir}/target/${build.profile}/minified-bare/${build.profile}-bare.js</source> |
| 35 | + <source>${project.basedir}/target/${build.profile}/lib/aloha-bare.min.js</source> |
67 | 36 | <outputDirectory>/alohaeditor-${project.version}/aloha/lib</outputDirectory>
|
68 | 37 | <destName>aloha.js</destName>
|
69 | 38 | <filtered>true</filtered>
|
70 | 39 | </file>
|
71 | 40 | </files>
|
72 | 41 |
|
73 |
| - |
74 | 42 | <fileSets>
|
75 |
| - <!-- Other non core files --> |
| 43 | + <!-- Other non-core files --> |
76 | 44 | <fileSet>
|
77 |
| - <directory>${project.basedir}/target/${build.profile}/rjs-output</directory> |
| 45 | + <directory>${project.basedir}/target/${build.profile}</directory> |
78 | 46 | <outputDirectory>/alohaeditor-${project.version}/aloha</outputDirectory>
|
79 | 47 | <excludes>
|
80 | 48 | <!-- Don't include the core -->
|
|
86 | 54 | </excludes>
|
87 | 55 | </fileSet>
|
88 | 56 |
|
89 |
| - <!-- Workaround for jquery-ui dependency --> |
| 57 | + <!-- Workaround for jquery-ui dependency |
90 | 58 | <fileSet>
|
91 | 59 | <directory>${project.basedir}/target/${build.profile}/rjs-output</directory>
|
92 | 60 | <outputDirectory>/alohaeditor-${project.version}/aloha</outputDirectory>
|
93 | 61 | <includes>
|
94 | 62 | <include>lib/aloha/jquery-ui.js</include>
|
95 | 63 | </includes>
|
96 | 64 | </fileSet>
|
| 65 | + --> |
97 | 66 |
|
98 | 67 | <!-- guides / api -->
|
99 | 68 | <fileSet>
|
|
102 | 71 | <includes>
|
103 | 72 | <include>**/*</include>
|
104 | 73 | </includes>
|
105 |
| - </fileSet> |
| 74 | + </fileSet> |
106 | 75 | </fileSets>
|
107 | 76 | <includeBaseDirectory>false</includeBaseDirectory>
|
108 | 77 | </assembly>
|
0 commit comments