forked from davidstevenrojas/webapp-github-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassemblyComponent.xml
More file actions
51 lines (48 loc) · 1.2 KB
/
assemblyComponent.xml
File metadata and controls
51 lines (48 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<component>
<fileSets>
<fileSet>
<directory>web</directory>
<outputDirectory>/web</outputDirectory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>plugin.js</exclude>
<exclude>github.js</exclude>
</excludes>
</fileSet>
</fileSets>
<files>
<file>
<source>target/build/${project.build.finalName}.jar</source>
<outputDirectory>/lib</outputDirectory>
</file>
<file>
<source>target/plugin.js</source>
<outputDirectory>/web</outputDirectory>
</file>
<file>
<source>plugin.xml</source>
<outputDirectory>/</outputDirectory>
<filtered>true</filtered>
</file>
<file>
<source>README.md</source>
<outputDirectory>/</outputDirectory>
</file>
</files>
<!-- In case one of your plugins needs to package its dependencies, use a section like the one below. -->
<!--
<dependencySets>
<dependencySet>
<unpack>false</unpack>
<scope>runtime</scope>
<outputDirectory>/lib</outputDirectory>
<includes>
<include>com.comp:library-1</include>
<include>com.comp:library-2</include>
</includes>
</dependencySet>
</dependencySets>
-->
</component>